-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update input and output descriptions
- Loading branch information
Showing
2 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
variable "domain_name" { | ||
description = "Domain name for the website (i.e. www.example.com)" | ||
variable "cert_arn" { | ||
description = "ARN of the SSL Certificate to use for the Cloudfront Distribution" | ||
type = "string" | ||
} | ||
|
||
variable "redirects" { | ||
description = "A list of domain names which redirect to domain_name" | ||
default = [] | ||
variable "domain_name" { | ||
description = "Domain name for the website (i.e. www.example.com)" | ||
type = "string" | ||
} | ||
|
||
variable "public_dir" { | ||
description = "Directory from which to serve public files (default: /public)" | ||
description = "Directory in S3 Bucket from which to serve public files" | ||
default = "/public" | ||
} | ||
|
||
variable "redirects" { | ||
description = "A list of domains that should redirect to domain_name (i.e. for redirecting naked domain to www-version)" | ||
default = [] | ||
} | ||
|
||
variable "secret" { | ||
description = "A secret string between CloudFront and S3 to control access" | ||
type = "string" | ||
} | ||
|
||
variable "cert_arn" { | ||
description = "ARN of the SSL Certificate to use for the Cloudfront Distribution" | ||
type = "string" | ||
variable "tags" { | ||
description = "A mapping of tags to assign to each resource" | ||
default = {} | ||
} | ||
|
||
variable "zone_id" { | ||
description = "ID of the Route 53 Hosted Zone in which to create an alias record" | ||
type = "string" | ||
} | ||
|
||
variable "tags" { | ||
description = "A map of tags to add to all resources" | ||
default = {} | ||
} |