-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
49 lines (40 loc) · 1.2 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
variable "ProjectName" {
type = "string"
description = "Customer name that will be used to tag all related resources"
}
variable "Subdomain" {
type = "string"
description = "Customer sub-domain name that will be used for FQDN"
}
variable "AWSInstanceType" {
type = "string"
description = "AWS Instance type from the list in https://aws.amazon.com/ec2/instance-types/"
}
variable "InstanceAMI" {
type = "string"
description = "AMI ID for the Image to be used to create the instance"
}
variable "AWSSubnet" {
type = "string"
description = "Amazon AWS Subnet to be used for creating new resources."
}
variable "AWSVPC" {
type = "string"
description = "Amazon AWS VPC to be used for creating new resources."
}
variable "RoleName" {
type = "string"
description = "Name given to the server to identify what it does."
}
variable "AWSDNSZoneID" {
type = "string"
description = "Amazon AWS Route 53 Zone ID"
}
variable "AWSKeyPairName" {
type = "string"
description = "AWS Key Pair Name"
}
variable "TopDomainName" {
type = "string"
description = "Top level domain that will be used for the new Route 53 record creted."
}