Skip to content

Commit eaec7ae

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

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

cd3_automation_toolkit/Release-Notes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ Apr 30, 2024
77
3. Dropdowns for Region and Compartment while running setUpOCI using Jenkins.
88
4. Fix Image OCIDs for OCI Work VM deployment using RM stack.
99
5. Option to execute 3rd Party Services from CD3 - Show OCI along with CIS Compliance Check script
10-
5. Upgrade of existing terraform modules - identity, buckets, LBaaS, NLBs,
10+
6. Upgrade of existing terraform modules - identity, buckets, LBaaS, NLBs (without DNS health check as of now).
11+
7. Enhance CD3 Validator for OCI Buckets.
1112

1213
-------------------------------------
1314
CD3 Automation Toolkit Tag v2024.2.0

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] # Uncomment to execute Networking and Mount Target together
24+
# depends_on = [module.vcns, module.subnets,module.nsgs]] # Uncomment to execute Networking 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/loadbalancer.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ locals {
3636
}
3737

3838
module "load-balancers" {
39-
# depends_on = [module.vcns, module.subnets] # Uncomment to execute Networking and Load Balancer together
39+
# depends_on = [module.vcns, module.subnets,module.nsgs] # Uncomment to execute Networking and Load Balancer together
4040
source = "./modules/loadbalancer/lb-load-balancer"
4141
for_each = var.load_balancers != null ? var.load_balancers : {}
4242

cd3_automation_toolkit/user-scripts/terraform/networkloadbalancer.tf

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

2323
module "network-load-balancers" {
24+
# depends_on = [module.nsgs] # Uncomment to create NSG and NLBs together
2425
source = "./modules/networkloadbalancer/nlb"
2526
for_each = var.network_load_balancers != null ? var.network_load_balancers : {}
2627
network_compartment_id = each.value.network_compartment_id != null ? (length(regexall("ocid1.compartment.oc*", each.value.network_compartment_id)) > 0 ? each.value.network_compartment_id : var.compartment_ocids[each.value.network_compartment_id]) : null

0 commit comments

Comments
 (0)