-
Notifications
You must be signed in to change notification settings - Fork 11
/
variables.tf
36 lines (28 loc) · 835 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
variable "domain_name" {
description = "the domain name of the active directory service."
}
variable "short_name" {
description = "the short name of the active directory service."
}
variable "computer_ou" {
default = ""
description = "the org unit of the active directory service."
}
variable "edition" {
default = "Standard"
description = "the edition of the MicrosoftAD active directory service. Standard or Enterprise"
}
variable "admin_password" {
description = "the admin password of the active directory service."
}
variable "vpc_id" {
description = "the vpc id of the active directory service."
}
variable "subnet_ids" {
type = "list"
description = "the subnet ids of the active directory service."
}
variable "iam_prefix" {
default = "ec2-ssm"
description = "prefix for naming iam resources."
}