forked from cn-terraform/terraform-aws-sonarqube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
36 lines (30 loc) · 1.02 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
#------------------------------------------------------------------------------
# Misc
#------------------------------------------------------------------------------
variable "name_preffix" {
description = "Name preffix for resources on AWS"
}
#------------------------------------------------------------------------------
# AWS REGION
#------------------------------------------------------------------------------
variable "region" {
description = "AWS Region the infrastructure is hosted in"
}
#------------------------------------------------------------------------------
# AWS Networking
#------------------------------------------------------------------------------
variable "vpc_id" {
description = "ID of the VPC"
}
variable "availability_zones" {
type = list
description = "List of Availability Zones"
}
variable "public_subnets_ids" {
type = list
description = "List of Public Subnets IDs"
}
variable "private_subnets_ids" {
type = list
description = "List of Private Subnets IDs"
}