-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
68 lines (55 loc) · 1.26 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
64
65
66
67
variable "aws_region" {
type = string
description = "region where vpn is configured"
}
variable "aws_access_key" {
type = string
description = "Access key of AWS account"
}
variable "aws_secret_key" {
type = string
description = "secret key of AWS account"
}
variable "vpc_cidr" {
type = string
description = "vpc cidr"
default = "10.0.0.0/16"
}
variable "public_subnet_cidr" {
type = string
description = "public subnet cidr"
default = "10.0.1.0/24"
}
variable "private_subnet_cidr" {
type = string
description = "private subnet cidr"
default = "10.0.2.0/24"
}
variable "ami_type" {
type = string
description = "AMI Type"
}
variable "capacity_type" {
type = string
description = "Instance capaity"
}
variable "disk_size" {
type = number
description = "disk size of the instance"
}
variable "instance_type" {
type = list(string)
description = "Instance type that is created"
}
# variable "s3_bucket" {
# type = string
# description = "S3 bucket name"
# }
# variable "dynamodb_table_name" {
# type = string
# description = "DynamoDB table name"
# }
variable "project" {
type = string
description = "Project name"
}