We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When attempting to
module "s3-static-website" { source = "cn-terraform/s3-static-website/aws" version = "1.0.3" name_prefix = "some-prefix" website_domain_name = "some.url.com" cloudfront_enable_compression = true website_bucket_acl = "public-read" create_acm_certificate = true create_route53_hosted_zone = true }
I receive the error:
Error: Variables not allowed On .tf\modules\s3-static-website\versions.tf line 7: Variables may not be used here.
versions.tf is having issues with the configuration_aliases line:
terraform { required_version = ">= 0.13" required_providers { aws = { source = "hashicorp/aws" version = ">= 4.0" configuration_aliases = [aws.main, aws.acm_provider] } } }
The text was updated successfully, but these errors were encountered:
Hi !, add to version.tf
provider "aws" { alias = "main" region = "us-east-1" } and
provider "aws" { alias = "acm_provider" region = "us-east-2" }
Sorry, something went wrong.
No branches or pull requests
When attempting to
I receive the error:
versions.tf is having issues with the configuration_aliases line:
The text was updated successfully, but these errors were encountered: