-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvariables.tf
55 lines (54 loc) · 1.13 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
variable "common_tags" {
description = "This is to help you add tags to your cloud objects"
type = map(any)
}
variable "mq_broker" {
type = map(any)
description = "MQ broker details"
}
variable "subnet_ids" {
description = "Contains subnet ids"
type = list(any)
}
variable "audit" {
description = "To enable audit logging"
type = bool
default = "false"
}
variable "maintenance_window_start_time" {
description = "Describe the Maintenance window block"
type = map(any)
default = {
day_of_week = "MONDAY"
time_of_day = "12:05"
time_zone = "GMT"
}
}
variable "vpc_id" {
description = "The VPC id"
type = string
}
variable "my_config" {
description = "MQ Config"
type = map(any)
}
variable "username" {
type = string
description = ""
default = "ExampleUser"
}
variable "password" {
type = string
description = ""
sensitive = true
}
variable "ingress" {
type = list(any)
}
variable "security_group_name" {
type = string
default = "Broker"
description = "Broker Security group name"
}
variable "kms_key_id" {
}