forked from ChanghoonHyun/devops_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
96 lines (75 loc) · 1.95 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
92
93
94
95
96
variable "service_name" {
description = "prefix for resource name, tag"
default = "sample"
}
variable "stage" {}
variable "web_vpc_cidr" {
description = "cidr of vpc"
}
variable "db_vpc_cidr" {
description = "cidr of vpc"
}
variable "web_vpc_public_subnets" {
description = "cidr of public subnets"
type = list(string)
}
variable "web_vpc_private_web_subnets" {
description = "cidr of private subnets"
type = list(string)
}
variable "web_vpc_privte_app_subnets" {
description = "cidr of private subnets"
type = list(string)
}
variable "db_vpc_private_subnets" {
description = "cidr of private subnets"
type = list(string)
}
variable "azs" {
description = "using availability zones"
type = list(string)
}
variable "default_region" {
default = "ap-northeast-2"
}
variable "db_engine" {
description = "engine"
}
variable "db_engine_version" {
description = "engine version"
}
variable "db_replica_count" {
description = "count of aurora replica"
}
variable "db_instance_type" {
description = "instance type of aurora"
}
variable "create_security_group" {
description = "create sg"
}
variable "skip_final_snapshot" {
description = "skip final snapshot when delete db cluster"
}
variable "eb_bucket_force_destroy" {
description = "force s3 destroy"
type = bool
}
variable "eb_bucket_acl" {
description = "acl of bucket"
}
variable "eb_source_s3_object" {}
variable "aws_db_parameter_group_name" {}
variable "aws_db_parameter_group_family" {}
variable "aws_db_parameter_group_description" {}
variable "aws_rds_cluster_parameter_group_name" {}
variable "aws_rds_cluster_parameter_group_family" {}
variable "aws_rds_cluster_parameter_group_description" {}
variable "sqs_delay_seconds" {}
variable "sqs_max_message_size" {}
variable "sqs_message_retention_seconds" {}
variable "sqs_receive_wait_time_seconds" {}
variable "function_name" {}
variable "handler" {}
variable "runtime" {}
variable "source_file" {}
variable "output_path" {}