Skip to content

Commit d0daf0d

Browse files
committed
Automation Toolkit Release v2024.2.2
1 parent eaec7ae commit d0daf0d

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

cd3_automation_toolkit/Release-Notes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Apr 30, 2024
1010
6. Upgrade of existing terraform modules - identity, buckets, LBaaS, NLBs (without DNS health check as of now).
1111
7. Enhance CD3 Validator for OCI Buckets.
1212

13+
------------------------------------
14+
CD3 Automation Toolkit Tag v2024.2.1
15+
Apr 4, 2024
16+
-------------------------------------
17+
1. Quick bug fix for OCI RM stack directly in github.
18+
1319
-------------------------------------
1420
CD3 Automation Toolkit Tag v2024.2.0
1521
Mar 22, 2024

cd3_automation_toolkit/user-scripts/terraform/adb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data "oci_core_vcns" "oci_vcns_adb" {
2424
module "adb" {
2525
source = "./modules/database/adb"
2626
for_each = var.adb != null ? var.adb : {}
27-
# depends_on = [module.vcns, module.subnets]
27+
# depends_on = [module.nsgs]
2828
admin_password = each.value.admin_password
2929
character_set = each.value.character_set
3030
compartment_id = each.value.compartment_id != null ? (length(regexall("ocid1.compartment.oc*", each.value.compartment_id)) > 0 ? each.value.compartment_id : var.compartment_ocids[each.value.compartment_id]) : null

cd3_automation_toolkit/user-scripts/terraform/database-exacs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ module "exa-infra" {
5757
############################################
5858

5959
module "exa-vmclusters" {
60-
depends_on = [module.exa-infra]
60+
depends_on = [module.exa-infra, module.nsgs]
6161
source = "./modules/database/exa-vmcluster"
6262

6363
for_each = var.exa_vmclusters != null ? var.exa_vmclusters : {}

cd3_automation_toolkit/user-scripts/terraform/dbsystem-vm-bm.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ data "oci_core_vcns" "oci_dbsystems_vcns" {
2121

2222
module "dbsystems-vm-bm" {
2323
source = "./modules/database/dbsystem-vm-bm"
24-
24+
# depends_on = [module.nsgs] # Uncomment to create NSG and DB Systems together
2525
for_each = var.dbsystems_vm_bm != null ? var.dbsystems_vm_bm : {}
2626
availability_domain = each.value.availability_domain != "" && each.value.availability_domain != null ? data.oci_identity_availability_domains.availability_domains.availability_domains[each.value.availability_domain].name : ""
2727
compartment_id = each.value.compartment_id != null ? (length(regexall("ocid1.compartment.oc*", each.value.compartment_id)) > 0 ? each.value.compartment_id : var.compartment_ocids[each.value.compartment_id]) : null

cd3_automation_toolkit/user-scripts/terraform/dns.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ data "oci_dns_views" "resolver_views_data" {
8989
### Module ###
9090
module "dns-resolvers" {
9191
source = "./modules/network/dns/dns_resolver"
92+
# depends_on = [module.nsgs] # Uncomment to create NSG and DNS Resolvers together
9293
for_each = var.resolvers != null ? var.resolvers : {}
9394
target_resolver_id = data.oci_core_vcn_dns_resolver_association.resolver_vcn_dns_resolver_association[each.key].*.dns_resolver_id[0]
9495
resolver_scope = "PRIVATE"

cd3_automation_toolkit/user-scripts/terraform/fss.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ data "oci_core_vcns" "oci_vcns_fss" {
2121
}
2222

2323
module "mts" {
24-
# depends_on = [module.vcns, module.subnets,module.nsgs]] # Uncomment to execute Networking and Mount Target together
24+
# depends_on = [module.nsgs]] # Uncomment to execute NSG and Mount Target together
2525
#Required
2626
source = "./modules/storage/file-storage/mount-target"
2727
for_each = (var.mount_targets != null || var.mount_targets != {}) ? var.mount_targets : {}

cd3_automation_toolkit/user-scripts/terraform/instance.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ data "oci_core_vcns" "oci_vcns" {
2222

2323
module "instances" {
2424
source = "./modules/compute/instance"
25+
# depends_on = [module.nsgs] # Uncomment to create NSG and Instances together
2526
for_each = var.instances != null ? var.instances : {}
2627
availability_domain = each.value.availability_domain != "" && each.value.availability_domain != null ? data.oci_identity_availability_domains.availability_domains.availability_domains[each.value.availability_domain].name : ""
2728
compartment_id = each.value.compartment_id != null ? (length(regexall("ocid1.compartment.oc*", each.value.compartment_id)) > 0 ? each.value.compartment_id : var.compartment_ocids[each.value.compartment_id]) : null

0 commit comments

Comments
 (0)