-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
35 lines (30 loc) · 1.04 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
##############################################################################
# List of input varaibles
##############################################################################
variable "resource_group_id" {
type = string
description = "The resource group ID to provision the CIS instance."
}
variable "service_name" {
type = string
description = "Name of the CIS instance."
}
variable "plan" {
type = string
description = "The type of plan for the CIS instance: standard-next or trial."
default = "trial"
validation {
condition = contains(["standard-next", "trial"], var.plan)
error_message = "Only the trial and standard-next plans are supported currently"
}
}
variable "tags" {
type = list(string)
description = "List of tags to be associated to the CIS instance."
default = []
}
variable "domain_name" {
type = string
description = "The domain name to be added to the CIS instance."
}
##############################################################################