-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
75 lines (64 loc) · 1.65 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
variable "aws_region" {
description = "AWS region to deploy resources into"
type = string
default = "us-east-1"
}
variable "cidr_block_internet" {
description = "CIDR block for the VPC"
type = string
default = "0.0.0.0/0"
}
variable "vpc_cidr_block" {
description = "CIDR block for the VPC"
type = string
default = "10.0.0.0/16"
}
variable "availability_zone_a" {
description = "Availability Zone for the subnet"
type = string
default = "us-east-1a"
}
variable "availability_zone_b" {
description = "Availability Zone for the subnet"
type = string
default = "us-east-1b"
}
variable "ecs_cluster_name" {
description = "The name of the ECS cluster"
default = "ecs-app-cluster"
}
variable "rds_instance_class" {
description = "The instance type of the RDS instance"
type = string
default = "db.t3.micro"
}
variable "ecs_db_migaration" {
description = "ECS container name"
type = string
default = "ecs_db_migaration"
}
variable "ecs_container_name" {
description = "ECS container name"
type = string
default = "rust-service"
}
variable "aws_logs_group_name" {
description = "ECS service name"
type = string
default = "app-logs-rust-service"
}
variable "aws_logs_group_prefix" {
description = "ECS service name"
type = string
default = "ecs-app"
}
variable "ecs_service_name" {
description = "ECS service name"
type = string
default = "app-service"
}
variable "getthedeck_api_domain" {
description = "Get The Deck API Domain"
type = string
default = "api.getthedeck.com"
}