-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
53 lines (33 loc) · 778 Bytes
/
variables.tf
File metadata and controls
53 lines (33 loc) · 778 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
50
51
52
53
# ./variables.tf
#--------------------------
# Provider
variable "profile" {}
variable "region" {}
#--------------------------
# VPC
variable "aws_region" {}
variable "vpc_name" {}
variable "vpc_cidr" {}
variable "availability_zones" {}
variable "public_subnets" {}
variable "private_subnets" {}
#--------------------------
# AutoScaling Group
variable "ec2_instance_name" {}
variable "ec2_instance_type" {}
variable "ec2_ami" {}
variable "ec2_key_pair" {}
#--------------------------
# RDS
variable "rds_name" {}
variable "rds_db_name" {}
variable "rds_username" {}
variable "rds_password" {
sensitive = true
}
variable "rds_allocated_storage" {}
variable "rds_instance_class" {}
variable "rds_engine_version" {}
variable "rds_multi_az" {
type = bool
}