forked from vhadianto/flowpipe-mod-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.fp
47 lines (39 loc) · 815 Bytes
/
variable.fp
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
variable "my_name" {
type = string
format = "text"
default = "siddhartha"
}
variable "string_var" {
type = string
format = "text"
default = "flowpipe_string"
}
variable "mandatory_tag_keys" {
type = list(string)
description = "A list of mandatory tag keys to check for (case sensitive)."
default = ["Environment", "Owner"]
}
variable "var_number" {
type = number
default = 24
}
variable "var_map" {
type = map(string)
default = {
key1 = "value1"
key2 = "value2"
}
}
variable "var_map_number" {
type = map(number)
default = {
key1 = 1
key2 = 2
}
}
variable "default_notifier" {
type = string
title = "Default Notifier"
description = "The name of the default notifier."
default = "default"
}