-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
83 lines (71 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Collection
variable "create_collection" {
type = bool
description = "Whether to create the collection."
default = true
}
variable "collection" {
type = map(any)
description = "A map of collections and their associated configurations."
default = {}
}
variable "tags" {
type = map(string)
description = "A map of tags to assign to the collection in addition to those defined in the collection configuration block."
default = {}
}
# Access Policy
variable "create_access_policy" {
type = bool
description = "Whether to create the access policy."
default = true
}
variable "access_policy" {
type = map(any)
description = "A map of access policies and their associated configurations."
default = {}
}
# Lifecycle Policy
variable "create_lifecycle_policy" {
type = bool
description = "Whether to create the lifecycle policy."
default = true
}
variable "lifecycle_policy" {
type = map(any)
description = "A map of lifecycle policies and their associated configurations."
default = {}
}
# Security Config
variable "create_security_config" {
type = bool
description = "Whether to create the security configuration."
default = true
}
variable "security_config" {
type = map(any)
description = "A map of security configurations and their associated configurations."
default = {}
}
# Security Policy
variable "create_security_policy" {
type = bool
description = "Whether to create the security policy."
default = true
}
variable "security_policy" {
type = map(any)
description = "A map of security policies and their associated configurations."
default = {}
}
# VPC Endpoint
variable "create_vpc_endpoint" {
type = bool
description = "Whether to create the vpc endpoint."
default = true
}
variable "vpc_endpoint" {
type = map(any)
description = "A map of vpc endpoints and their associated configurations."
default = {}
}