-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
62 lines (50 loc) · 1.16 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
variable "boundary_addr" {
type = string
}
variable "auth_method_id" {
type = string
}
variable "password_auth_method_login_name" {
type = string
}
variable "password_auth_method_password" {
type = string
}
variable "aws_access" {
type = string
}
variable "aws_secret" {
type = string
}
variable "aws_region" {
type = string
default = "eu-west-2"
}
variable "private_vpc_cidr" {
type = string
description = "The Private CIDR range to assign to the VPC"
}
variable "aws_vpc_cidr" {
type = string
description = "The AWS Region CIDR range to assign to the VPC"
}
variable "private_subnet_cidr" {
type = string
description = "The Private CIDR range to assign to the Private subnet"
}
variable "aws_subnet_cidr" {
type = string
description = "The AWS Region CIDR range to assign to the Private subnet"
}
variable "availability_zone" {
type = string
description = "Region within AWS to deploy the resources"
default = "eu-west-2b"
}
variable "ni_tags" {
type = map(any)
description = "Tag to identify the network interface on the resource"
default = {
Name = "boundary-vm-nic"
}
}