-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
49 lines (40 loc) · 971 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
40
41
42
43
44
45
46
47
48
49
variable "aws_region" {
type = string
description = "aws region to use"
}
variable "aws_access_key" {
type = string
description = "AWS access key"
}
variable "aws_secret_key" {
type = string
description = "AWS secret key"
}
variable "aws_dns_suffix" {
type = string
description = "DNS suffix that AWS uses for internal host names (e.g., ec2.internal, compute.internal)"
}
variable "aws_directory_service_password" {
type = string
description = "password to use for the aws directory service (enabling DNS)"
}
variable "azure_resource_group_name" {
type = string
description = "azure resource group to use"
}
variable "azure_location" {
type = string
description = "azure location to use"
}
# variable "az_subscription_id" {
# type = string
# }
# variable "az_client_id" {
# type = string
# }
# variable "az_client_secret" {
# type = string
# }
# variable "az_tenant_id" {
# type = string
# }