diff2html/terraform/variables.tf

20 lines
415 B
Terraform
Raw Normal View History

2018-11-18 19:07:55 +00:00
variable "aws_region" {
description = "The aws region to deploy"
default = "eu-west-1"
}
variable "aws_profile" {
description = "The aws profile to use"
default = "personal"
}
variable "domain" {
description = "The domain to deploy this page"
default = "diff2html.xyz"
}
variable "hosted_zone_id" {
description = "The hosted zone id where the domain will be created"
default = "Z2T76N7UKY0XQI"
}