-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
29 lines (27 loc) · 1.03 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
variable "bucket_name" {
description = "This corresponds to a unique bucket name in which you want to store your site contents. It is normally convention to use the domain name as the bucket name (eg. example.com)."
type = string
}
variable "tags" {
description = "Tags you would like to apply across AWS resources."
type = map(string)
default = {}
}
variable "index_document" {
description = "This corresponds to the default index document. (Defaults to index.html)"
type = string
default = "index.html"
}
variable "error_document" {
description = "This corresponds to the default error document. (Defaults to error.html)"
type = string
default = "error.html"
}
variable "domain_name" {
description = "This is the domain name you want to use to point your website. (eg. example.com, www.example.com etc)"
type = string
}
variable "cloudflare_zone_id" {
description = "The DNS zone ID in which add the record. You can get this from the domain view in the cloudflare dashboard."
type = string
}