-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace README.md * Update README.md * Update README.md * Release 0.1.4 * fix: dynamic runtime dependency issue in local.target_host_scan_cmps * feat: tenancy_ocid attr moved to standalone variable. reporting_region defaults to tenancy home region * doc: updates * doc: release notes and version bump * doc: updates * Add vault replication * add example for vault replica * update example of vault replicas * update vault replica config to one variable * doc: updates --------- Signed-off-by: Andre Correa <[email protected]> Co-authored-by: CINTHIA JIMENEZ <[email protected]> Co-authored-by: Yupei Yang <[email protected]>
- Loading branch information
1 parent
11975b0
commit a20b002
Showing
24 changed files
with
174 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.4 | ||
0.1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
# Copyright (c) 2023 Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
data "oci_identity_regions" "these" {} | ||
|
||
data "oci_identity_tenancy" "this" { | ||
tenancy_id = var.tenancy_ocid | ||
} | ||
|
||
data "oci_cloud_guard_security_policies" "these" { | ||
compartment_id = var.security_zones_configuration != null ? var.security_zones_configuration.tenancy_ocid : "void" | ||
compartment_id = var.security_zones_configuration != null ? var.tenancy_ocid : "__void__" | ||
} | ||
|
||
data "oci_cloud_guard_cloud_guard_configuration" "this" { | ||
compartment_id = var.security_zones_configuration != null ? var.security_zones_configuration.tenancy_ocid : "Void" | ||
compartment_id = var.security_zones_configuration != null ? var.tenancy_ocid : "__void__" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.