generated from terraform-ibm-modules/terraform-ibm-module-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
35 lines (30 loc) · 935 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 = "The IBM Cloud API key"
sensitive = true
}
variable "region" {
type = string
description = "The region where the Event Streams are created."
default = "us-south"
}
variable "prefix" {
type = string
description = "The prefix to apply to all resources created by this example."
default = "event-streams-com"
}
variable "resource_group" {
type = string
description = "An existing resource group name to use for this example. If not specified, a new resource group is created."
default = null
}
variable "resource_tags" {
type = list(string)
description = "The list of tags associated with the Event Steams instance."
default = []
}
variable "access_tags" {
type = list(string)
description = "The list of access tags associated with the Event Steams instance."
default = []
}