We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fadeb3d commit 8760f70Copy full SHA for 8760f70
README.md
@@ -24,7 +24,9 @@ module "s3-static-website" {
24
source = "conortm/s3-static-website/aws"
25
26
domain_name = "www.my-aws-s3-static-website.com"
27
- redirects = ["my-aws-s3-static-website.com"]
+ redirects = {
28
+ "my-static-website" : "my-aws-s3-static-website.com"
29
+ }
30
secret = "SOME_SECRET_MANAGED_OUTSIDE_OF_VERSION_CONTROL"
31
cert_arn = "ARN_OF_SSL_CERTIFICATE"
32
zone_id = "HOSTED_ZONE_ID"
variables.tf
@@ -25,7 +25,7 @@ variable "secret" {
variable "tags" {
description = "A mapping of tags to assign to each resource"
- type = map(string)
+ type = map(string)
default = {}
}
0 commit comments