-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
54 lines (44 loc) · 860 Bytes
/
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
variable "container_name" {
type = "string"
default = "webinar-web-app"
}
variable "container_port" {
type = "string"
default = "80"
}
variable "container_desired_count" {
type = "string"
default = "2"
}
variable "container_desired_cpu" {
type = "string"
default = "256"
}
variable "container_desired_memory" {
type = "string"
default = "512"
}
variable "ecs_cluster_name" {
type = "string"
default = "webinar"
}
variable "aws_region" {
type = "string"
default = "eu-west-1"
}
variable "aws_region_new" {
type = "string"
default = "eu-central-1"
}
variable "alb_name" {
type = "string"
default = "aws-webinar"
}
variable "github_username" {
type = "string"
default = "cobusbernard"
}
variable "github_repo_name" {
type = "string"
default = "aws-service-region-migration"
}