-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
91 lines (71 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#--- root/variables.tf ---
variable "aws_region" {
type = string
description = "The region to deploy resources"
}
variable "vpc_cidr" {
type = string
description = "The VPC cidr"
}
variable "enable_dns_hostnames" {
type = bool
}
variable "enable_dns_support" {
type = bool
}
variable "preferred_number_of_pub_subnets" {
type = number
}
variable "preferred_number_of_priv_subnets" {
type = number
}
variable "tags" {
description = "A mapping of tags to assign to all resources"
type = map(string)
default = {}
}
variable "account_no" {
type = string
}
variable "master-password" {
description = "password for database"
type = string
sensitive = true
}
variable "master-username" {
type = string
}
variable "ami-bastion" {
type = string
description = "AMI ID for bastion"
}
variable "ami-nginx" {
type = string
description = "AMI ID for nginx reverse-proxy"
}
variable "ami-wordpress" {
type = string
description = "AMI ID for wordpress webservers"
}
variable "ami-tooling" {
type = string
description = "AMI ID for tooling webservers"
}
variable "ami-jenkins" {
type = string
description = "AMI ID for compute"
}
variable "ami-sonar" {
type = string
description = "AMI ID for compute"
}
variable "ami-jfrog" {
type = string
description = "AMI ID for compute"
}
variable "key_pair" {
type = string
}
variable "myip" {
type = list(any)
}