-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvariables.tf
50 lines (40 loc) · 1.14 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
variable "instance_1_ami" {
description = "Value of the AMI ID for the EC2 instance"
type = string
}
variable "instance_1_type" {
description = "Value of the Instance Type for the EC2 instance"
type = string
}
variable "instance_1_name" {
description = "Value of the Name Tag for the EC2 instance"
type = string
}
variable "instance_2_ami" {
description = "Value of the AMI ID for the EC2 instance"
type = string
}
variable "instance_2_type" {
description = "Value of the Instance Type for the EC2 instance"
type = string
}
variable "instance_2_name" {
description = "Value of the Name Tag for the EC2 instance"
type = string
}
variable "website_s3_bucket_1_name" {
description = "Value of the Name Tag for the S3 bucket"
type = string
}
variable "website_s3_bucket_2_name" {
description = "Value of the Name Tag for the S3 bucket"
type = string
}
variable "terraform" {
description = "Value of the Terraform Tag for the S3 bucket"
type = string
}
variable "environment" {
description = "Value of the Environment Tag for the S3 bucket"
type = string
}