forked from ned1313/Getting-Started-Terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
63 lines (53 loc) · 1.32 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 "naming_prefix" {
type = string
description = "Naming prefix for resources"
default = "globoweb"
}
variable "aws_region" {
type = string
description = "Region for AWS Resources"
default = "us-east-1"
}
variable "enable_dns_hostnames" {
type = bool
description = "Enable DNS hostnames in VPC"
default = true
}
variable "vpc_cidr_block" {
type = string
description = "Base CIDR Block for VPC"
default = "10.0.0.0/16"
}
variable "vpc_subnet_count" {
type = number
description = "Number of subnets to create in VPC"
default = 2
}
variable "map_public_ip_on_launch" {
type = bool
description = "Map a public IP address for Subnet instances"
default = true
}
variable "instance_type" {
type = string
description = "Type for EC2 Instance"
default = "t2.micro"
}
variable "instance_count" {
type = number
description = "Number of instances to create in VPC"
default = 2
}
variable "company" {
type = string
description = "Company name for resource tagging"
default = "Globomantics"
}
variable "project" {
type = string
description = "Project name for resource tagging"
}
variable "billing_code" {
type = string
description = "Billing code for resource tagging"
}