generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (30 loc) · 920 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
variable "ibmcloud_api_key" {
type = string
description = "An IBM Cloud API key."
sensitive = true
}
variable "region" {
type = string
description = "The region to provision all resources created by this example."
default = "us-south"
}
variable "prefix" {
type = string
description = "The prefix for the resources created by this example."
default = "complete-s2s"
}
variable "resource_group" {
type = string
description = "The name of an existing resource group to provision the resources in. If not set, a resource group is created with the prefix variable."
default = null
}
variable "resource_tags" {
type = list(string)
description = "Optional list of tags to add to new resources"
default = []
}
variable "enforcement_mode" {
type = string
description = "The CBR rule enforcement mode."
default = "report"
}