forked from rahulwagh/terraform-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (32 loc) · 816 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
variable "bucket_name" {
type = string
description = "Remote state bucket name"
}
variable "vpc_cidr" {
type = string
description = "Public Subnet CIDR values"
}
variable "vpc_name" {
type = string
description = "DevOps Project 1 VPC 1"
}
variable "cidr_public_subnet" {
type = list(string)
description = "Public Subnet CIDR values"
}
variable "cidr_private_subnet" {
type = list(string)
description = "Private Subnet CIDR values"
}
variable "eu_availability_zone" {
type = list(string)
description = "Availability Zones"
}
variable "public_key" {
type = string
description = "DevOps Project 1 Public key for EC2 instance"
}
variable "ec2_ami_id" {
type = string
description = "DevOps Project 1 AMI Id for EC2 instance"
}