Skip to content

Commit

Permalink
Automation Toolkit Release v2024.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bhlohumi committed Apr 30, 2024
1 parent 319bb48 commit eaec7ae
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion cd3_automation_toolkit/Release-Notes
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Apr 30, 2024
3. Dropdowns for Region and Compartment while running setUpOCI using Jenkins.
4. Fix Image OCIDs for OCI Work VM deployment using RM stack.
5. Option to execute 3rd Party Services from CD3 - Show OCI along with CIS Compliance Check script
5. Upgrade of existing terraform modules - identity, buckets, LBaaS, NLBs,
6. Upgrade of existing terraform modules - identity, buckets, LBaaS, NLBs (without DNS health check as of now).
7. Enhance CD3 Validator for OCI Buckets.

-------------------------------------
CD3 Automation Toolkit Tag v2024.2.0
Expand Down
2 changes: 1 addition & 1 deletion cd3_automation_toolkit/user-scripts/terraform/fss.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ data "oci_core_vcns" "oci_vcns_fss" {
}

module "mts" {
# depends_on = [module.vcns, module.subnets] # Uncomment to execute Networking and Mount Target together
# depends_on = [module.vcns, module.subnets,module.nsgs]] # Uncomment to execute Networking and Mount Target together
#Required
source = "./modules/storage/file-storage/mount-target"
for_each = (var.mount_targets != null || var.mount_targets != {}) ? var.mount_targets : {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ locals {
}

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ data "oci_core_vcns" "oci_vcns_nlb" {
}

module "network-load-balancers" {
# depends_on = [module.nsgs] # Uncomment to create NSG and NLBs together
source = "./modules/networkloadbalancer/nlb"
for_each = var.network_load_balancers != null ? var.network_load_balancers : {}
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
Expand Down

0 comments on commit eaec7ae

Please sign in to comment.