-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariable.tf
More file actions
49 lines (35 loc) · 922 Bytes
/
variable.tf
File metadata and controls
49 lines (35 loc) · 922 Bytes
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 "vpc_cidr" {}
variable "aws_region" {}
variable "application_name" {}
variable "environment" {}
variable "country" {}
variable "subnet_cidr_private" {}
variable "subnet_azs_private" {}
variable "subnet_tier_private" {}
variable "subnet_cidr_public" {}
variable "subnet_azs_public" {}
variable "subnet_tier_public" {}
variable "ec2_names" {}
variable "ami_id" {}
variable "key_name" {}
variable "ec2_monitoring" {}
variable "ec2_disable_api_termination" {}
variable "instance_type" {}
variable "policy_list" {}
variable "asg_desired_capacity" {}
variable "asg_max_size" {}
variable "asg_min_size" {}
variable "rds_password" {}
variable "rds_instance_class" {}
variable "rds_cluster_identifier" {}
variable "rds_username"{}
variable "rds_cluster_instance_identifier" {
}
variable "rds_engine" {
}
variable "rds_engine_version" {
}
variable "rds_db_name" {
}
variable "hostname" {
}