You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the AWS static site example leads to these errors and warnings when running terraform init:
│
│ on .terraform/modules/my_site.aws_reverse_proxy/aws_reverse_proxy/certificate.tf line 4, in resource "aws_acm_certificate" "this":
│ 4: provider = "aws.us_east_1" # because ACM is only available in the "us-east-1" region
│
│ In this context, references are expected literally rather than in quotes. Terraform 0.11 and earlier required quotes, but quoted references are now deprecated and will be removed in a future version of Terraform. Remove the quotes surrounding this
│ reference to silence this warning.
│
│ (and 4 more similar warnings elsewhere)
╵
╷
│ Error: Invalid quoted type constraints
│
│ on .terraform/modules/my_site.aws_reverse_proxy/aws_reverse_proxy/variables.tf line 41, in variable "add_response_headers":
│ 41: type = "map"
│
│ Terraform 0.11 and earlier required type constraints to be given in quotes, but that form is now deprecated and will be removed in a future version of Terraform. Remove the quotes around "map" and write map(string) instead to explicitly indicate that
│ the map elements are strings.
╵
╷
│ Error: Invalid quoted type constraints
│
│ on .terraform/modules/my_site.aws_reverse_proxy/aws_reverse_proxy/variables.tf line 108, in variable "tags":
│ 108: type = "map"
│
│ Terraform 0.11 and earlier required type constraints to be given in quotes, but that form is now deprecated and will be removed in a future version of Terraform. Remove the quotes around "map" and write map(string) instead to explicitly indicate that
│ the map elements are strings.
╵
╷
│ Error: Invalid quoted type constraints
│
│ on .terraform/modules/my_site/aws_static_site/variables.tf line 42, in variable "add_response_headers":
│ 42: type = "map"
│
│ Terraform 0.11 and earlier required type constraints to be given in quotes, but that form is now deprecated and will be removed in a future version of Terraform. Remove the quotes around "map" and write map(string) instead to explicitly indicate that
│ the map elements are strings.
╵
╷
│ Error: Invalid quoted type constraints
│
│ on .terraform/modules/my_site/aws_static_site/variables.tf line 76, in variable "tags":
│ 76: type = "map"
│
│ Terraform 0.11 and earlier required type constraints to be given in quotes, but that form is now deprecated and will be removed in a future version of Terraform. Remove the quotes around "map" and write map(string) instead to explicitly indicate that
│ the map elements are strings.
Running the AWS static site example leads to these errors and warnings when running
terraform init
:Version info:
The text was updated successfully, but these errors were encountered: