-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
33 lines (29 loc) · 1.12 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
# ------------------------------------------------------------------------------
# REQUIRED PARAMETERS
#
# You must provide a value for each of these parameters.
# ------------------------------------------------------------------------------
variable "subnet_id" {
description = "The ID of the AWS subnet to deploy into (e.g. subnet-0123456789abcdef0)."
type = string
}
# ------------------------------------------------------------------------------
# OPTIONAL PARAMETERS
#
# These parameters have reasonable defaults.
# ------------------------------------------------------------------------------
variable "ami_owner_account_id" {
default = "self"
description = "The ID of the AWS account that owns the Example AMI, or \"self\" if the AMI is owned by the same account as the provisioner."
type = string
}
variable "aws_availability_zone" {
default = "a"
description = "The AWS availability zone to deploy into (e.g. a, b, c, etc.)."
type = string
}
variable "aws_region" {
default = "us-east-1"
description = "The AWS region to deploy into (e.g. us-east-1)."
type = string
}