-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
63 lines (63 loc) · 1.83 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
variable "aws_region" {
type = string
description = "This is the region where the infrastructure will be provisioned"
default = "us-west-1"
}
variable "application_name" {
type = string
description = "This is the application name used for tagging resources"
}
variable "vpc_cidr_block" {
type = map
description = "This is the CIDR block used for the VPC"
}
variable "availability_zones" {
type = list(string)
description = "This is the list of AWS availability zones"
}
variable "public_cidrs" {
type = map(list(string))
description = "This is a map with the CIDR blocks for public subnets"
}
variable "private_cidrs" {
type = map(list(string))
description = "This is a map with the CIDR blocks for private subnets"
}
variable "insecure_port" {
type = number
description = "This is the insecure port to allow ingress in security group "
}
variable "secure_port" {
type = number
description = "This is the secure port to allow ingress in security group"
}
variable "bucket_prefix" {
type = string
description = "This is the folder where the logs should be created"
}
variable "container_port" {
type = number
description = "This is the port used for container"
default = 8080
}
variable "repository_url" {
type = string
description = "This is the URL of the repository"
default = ""
}
variable "allocated_storage" {
type = number
description = "This is allocated storage for the database"
}
variable "instance_class" {
type = string
description = "This is an instance class for DB instance"
}
variable "engine_version" {
type = string
description = "This is the engine version for the engine used"
}
variable "database_name" {
type = string
description = "This is the name of the database"
}