forked from ChanghoonHyun/devops_examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
60 lines (49 loc) · 1.36 KB
/
terraform.tfvars
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
service_name = "sample"
stage = "dev"
default_region = "ap-northeast-2"
web_vpc_cidr = "10.0.0.0/16"
db_vpc_cidr = "10.1.0.0/16"
azs = [
"ap-northeast-2a",
"ap-northeast-2b"
]
web_vpc_public_subnets = [
"10.0.0.0/24",
"10.0.1.0/24",
]
web_vpc_private_web_subnets = [
"10.0.3.0/24",
"10.0.4.0/24",
]
web_vpc_privte_app_subnets = [
"10.0.6.0/24",
"10.0.7.0/24",
]
db_vpc_private_subnets = [
"10.1.0.0/24",
"10.1.1.0/24",
]
aws_db_parameter_group_name = "aurora-db-56-parameter-group"
aws_db_parameter_group_family = "aurora5.6"
aws_db_parameter_group_description = "aurora-db-56-parameter-group"
aws_rds_cluster_parameter_group_name = "aurora-56-cluster-parameter-group"
aws_rds_cluster_parameter_group_family = "aurora5.6"
aws_rds_cluster_parameter_group_description = "aurora-56-cluster-parameter-group"
db_engine = "aurora"
db_engine_version = "5.6.10a"
db_replica_count = 0
db_instance_type = "db.t2.small"
create_security_group = true
skip_final_snapshot = true
eb_bucket_force_destroy = true
eb_bucket_acl = "private"
eb_source_s3_object = "sample_files/sample.zip"
sqs_delay_seconds = 90
sqs_max_message_size = 2048
sqs_message_retention_seconds = 86400
sqs_receive_wait_time_seconds = 10
function_name = "hello_lambda"
handler = "hello_lambda.lambda_handler"
runtime = "python3.6"
source_file = "sample_files/sample.zip"
output_path = "hello_lambda.zip"