-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
fixtures.us-east-2.tfvars
124 lines (84 loc) · 1.85 KB
/
fixtures.us-east-2.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
region = "us-east-2"
availability_zones = ["us-east-2a", "us-east-2b"]
namespace = "eg"
stage = "test"
name = "ecs-codepipeline"
vpc_cidr_block = "172.16.0.0/16"
ecs_launch_type = "FARGATE"
network_mode = "awsvpc"
ignore_changes_task_definition = true
assign_public_ip = false
propagate_tags = "TASK_DEFINITION"
deployment_minimum_healthy_percent = 100
deployment_maximum_percent = 200
deployment_controller_type = "ECS"
desired_count = 1
task_memory = 512
task_cpu = 256
container_name = "geodesic"
container_image = "cloudposse/geodesic"
container_memory = 256
container_memory_reservation = 128
container_cpu = 256
container_essential = true
container_readonly_root_filesystem = false
container_environment = [
{
name = "string_var"
value = "I am a string"
},
{
name = "true_boolean_var"
value = true
},
{
name = "false_boolean_var"
value = false
},
{
name = "integer_var"
value = 42
}
]
container_port_mappings = [
{
containerPort = 80
hostPort = 80
protocol = "tcp"
},
{
containerPort = 443
hostPort = 443
protocol = "udp"
}
]
github_oauth_token = "test"
repo_owner = "cloudposse"
repo_name = "terraform-aws-ecs-codepipeline"
branch = "master"
build_image = "aws/codebuild/amazonlinux2-x86_64-standard:5.0"
build_compute_type = "BUILD_GENERAL1_SMALL"
build_timeout = 60
poll_source_changes = false
privileged_mode = true
image_repo_name = "terraform-aws-ecs-codepipeline"
image_tag = "latest"
webhook_enabled = false
s3_bucket_force_destroy = true
environment_variables = [
{
name = "APP_URL"
value = "https://app.example.com"
type = "PLAINTEXT"
},
{
name = "COMPANY_NAME"
value = "Cloud Posse"
type = "PLAINTEXT"
},
{
name = "TIME_ZONE"
value = "America/Los_Angeles"
type = "PLAINTEXT"
}
]