Skip to content

Instantly share code, notes, and snippets.

@jaanauati
Created October 26, 2021 10:43
Show Gist options
  • Save jaanauati/e2b126368f9fc9c815f47f8ffec3e468 to your computer and use it in GitHub Desktop.
Save jaanauati/e2b126368f9fc9c815f47f8ffec3e468 to your computer and use it in GitHub Desktop.
$ terraform apply
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# awscc_location_place_index.name will be created
+ resource "awscc_location_place_index" "name" {
+ arn = (known after apply)
+ create_time = (known after apply)
+ data_source = "Esri"
+ data_source_configuration = {
+ intended_use = (known after apply)
}
+ description = (known after apply)
+ id = (known after apply)
+ index_arn = (known after apply)
+ index_name = "location-service-1"
+ pricing_plan = "RequestBasedUsage"
+ update_time = (known after apply)
}
Plan: 1 to add, 0 to change, 0 to destroy.
Do you want to perform these actions?
Terraform will perform the actions described above.
Only 'yes' will be accepted to approve.
Enter a value: yes
awscc_location_place_index.name: Creating...
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.arn. All values must be known after apply, so this is always a
│ bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.create_time. All values must be known after apply, so this is
│ always a bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.data_source_configuration. All values must be known after apply,
│ so this is always a bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.description. All values must be known after apply, so this is
│ always a bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.index_arn. All values must be known after apply, so this is
│ always a bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Provider returned invalid result object after apply
│ After the apply operation, the provider still indicated an unknown value for awscc_location_place_index.name.update_time. All values must be known after apply, so this is
│ always a bug in the provider and should be reported in the provider's own repository. Terraform will still save the other known object values in the state.
│ Error: Creation Of Terraform State Unsuccessful
│ with awscc_location_place_index.name,
│ on main.tf line 9, in resource "awscc_location_place_index" "name":
│ 9: resource "awscc_location_place_index" "name" {
│ Unable to set Terraform State Unknown values from Cloud Control API Properties. This is typically an error with the Terraform provider implementation. Original Error: error
│ setting value at AttributeName("data_source_configuration"): 1 error occurred:
│ * An unexpected error was encountered trying to convert from value. This is always an error in the provider. Please report the following to the provider developer:
│ cannot use type map[string]interface {} as schema type types.ObjectType; types.ObjectType must be an attr.TypeWithElementType to hold map[string]interface {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment