-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
49 lines (43 loc) · 890 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
variable "region" {
type = string
description = "AWS Region"
default = ""
}
variable "cidr_block" {
default = "172.31.0.0/16"
}
variable "aws_vpc" {
type = map(any)
default = {
"instance_tenancy" = "default"
"enable_dns_support" = true
"enable_dns_hostnames" = false
"enable_classiclink" = false
"assign_generated_ipv6_cidr_block" = false
}
}
variable "default_security_group_deny_all" {
type = bool
default = true
}
variable "internet_gateway_enabled" {
type = bool
default = true
}
variable "default_sg" {
type = bool
default = true
}
########
# TAGS #
########
variable "tags" {
type = map(any)
default = {
Name = "Default"
Project = "CHANGEME"
Environment = "CHANGEME"
Owner = "Cyber-Duck"
Customer = "CHANGEME"
}
}