-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
49 lines (41 loc) · 909 Bytes
/
variables.tf
File metadata and controls
49 lines (41 loc) · 909 Bytes
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 "vpc_cidr_block" {
description = "CIDR block for the VPC"
type = string
}
variable "subnet_cidr_block" {
description = "CIDR block for the subnet"
type = string
}
variable "avail_zone" {
description = "Availability zone for the subnet"
type = string
}
variable "env_prefix" {
description = "Environment prefix"
type = string
}
variable "access_key" {
description = "IAM Access Key"
}
variable "secret_key" {
description = "IAM Secret Key"
}
variable "region" {
description = "Infra Current Region"
}
variable "my_ip" {
description = "My IP"
type = string
}
variable "instance_type" {
description = "Instance Type"
type = string
}
variable "public_key_location" {
description = "Public Key Location"
type = string
}
variable "user_data_location" {
description = "User Data Location"
type = string
}