-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
60 lines (47 loc) · 2.04 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
# -------------------------------------------------------------- Credentials variables ------------------------------------------------------------- #
variable "region" {
description = "Our AWS Region"
}
variable "access_key" {
description = "Our access key"
}
variable "secret_key" {
description = "Our secret key"
}
variable "project_name" {
type = string
}
variable "user_name" {
type = string
}
# -------------------------------------------------------------- VPC variables --------------------------------------------------------------------- #
variable "netw_cidr" {
type = string
description = "VPC Network CIDR Range"
}
variable "vpc_azs" {
type = list(string)
description = "Availability Zones in Our Region"
}
# ---------------------------- Public Subnets ---------------------------------------------------------------------------------------------------
variable "subnet_public_cidrs" {
type = list(string)
description = "Public Subnets CIDR Range"
}
# ---------------------------- Private Subnets ---------------------------------------------------------------------------------------------------
variable "subnet_private_cidrs" {
type = list(string)
description = "Private Subnets CIDR Range"
}
# ---------------------------- Private Database Subnets ---------------------------------------------------------------------------------------------------
variable "subnet_db_cidrs" {
type = list(string)
description = "Private Database Subnets CIDR Range"
}
# -------------------------------------------------------------------------------------------------------------------------------------------------- #
# # ------------------------------------------------------------- S3 variables ----------------------------------------------------------------------- #
variable "s3_bucket_name" {
description = "Our S3 Bucket Name"
type = string
}
# # -------------------------------------------------------------------------------------------------------------------------------------------------- #