Files
atlantis/website/terraform/modules/cloudfront_distribution/variables.tf
Luke Kysow 49403c209e Host site at www.runatlantis.io
- Terraform to host the site on S3 and CloudFront
2018-03-02 12:13:37 -08:00

17 lines
390 B
HCL

variable "domain_name" {
description = "The website endpoint of your S3 bucket."
}
variable "origin_id" {
description = "Any string to name this origin."
}
variable "cnames" {
description = "CNAME's for this distribution."
type = "list"
}
variable "acm_certificate_arn" {
description = "ARN of ACM certificate used to provide SSL for this distribution's domain name."
}