-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (38 loc) · 913 Bytes
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# General variables file
#
# Variables need to be defined even though they are loaded from
# terraform.tfvars - see https://github.com/hashicorp/terraform/issues/2659
variable "access_origin_id" {
default = "ABCDEFABCDEF"
}
variable "s3_origin_id" {
defaul = "S3-www.example.com"
}
variable "tag_Owner" {
default = "[email protected]"
}
variable "tag_Name" {
default = "secure-cdn"
}
variable "aws_region" {
default = "eu-west-1"
}
variable "acm_ssl_cert" {
default = "arn:aws:iam::111111111111:server-certificate/example.com"
}
variable "bucket_name" {
default = "cdn.example.com"
}
variable "origin_domain_name" {
default = "cdn.example.com"
}
variable "domain_aliases" {
default = "cdn.example.com,images.example.com"
}
variable "cname_aliases" {
default = "cdn.example.com,images.example.com"
}
variable "domain_zone_id" {
default = "ZXZXZXZXZXZ"
}