forked from oci-landing-zones/oci-scca-landingzone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity-variables.tf
101 lines (82 loc) · 2.28 KB
/
security-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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# ###################################################################################################### #
# Copyright (c) 2023 Oracle and/or its affiliates, All rights reserved. #
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. #
# ###################################################################################################### #
variable "backup_bucket_name" {
type = string
default = "OCI-SCCA-LZ-IAC-Backup"
description = ""
}
variable "central_vault_name" {
type = string
default = "OCI-SCCA-LZ-Central-Vault"
description = "Vault Name"
}
variable "central_vault_type" {
type = string
default = "DEFAULT"
description = "Set value to DEFAULT for testing purpose. The default should be VIRTUAL_PRIVATE"
}
variable "enable_vault_replication" {
type = bool
default = false
description = "Enable to replicate vault to secondary region. Can only be enabled when vault type is VIRTUAL_PRIVATE"
}
variable "master_encryption_key_name" {
type = string
default = "OCI-SCCA-LZ-MSK"
description = "Master Encryption Key Name"
}
// Cloud Guard Variable
variable "cloud_guard_target_tenancy" {
type = bool
default = false
}
// variables to enable logging bucket
variable "retention_policy_duration_amount" {
type = string
default = "1"
}
variable "retention_policy_duration_time_unit" {
type = string
default = "DAYS"
}
variable "bucket_storage_tier" {
type = string
default = "Archive"
}
// variables to use remote bucket
variable "remote_tenancy_ocid" {
type = string
default = ""
}
variable "remote_tenancy_name" {
type = string
default = ""
}
variable "remote_namespace" {
type = string
default = ""
}
variable "remote_audit_log_bucket_name" {
type = string
default = ""
}
variable "remote_default_log_bucket_name" {
type = string
default = ""
}
variable "remote_service_event_bucket_name" {
type = string
default = ""
}
variable "enable_bucket_replication" {
type = bool
default = false
description = "Enable to replicate buckets to secondary region."
}
// Bastion Variables
variable "bastion_client_cidr_block_allow_list" {
type = list(string)
default = []
}