oci-landing-zones / oracle-enterprise-landingzone

ORACLE ENTERPRISE LANDING ZONE
Universal Permissive License v1.0
25 stars 45 forks source link

service connector names interchanged #176

Closed hslange closed 8 months ago

hslange commented 9 months ago

In file elz-logging/main.tf several service connectors are created. However, the "audit_log_service_connector" gets the display name of the "default service connector" and the "default_log_service_connector" gets the name of the "audit_log_service_connector". See the code snippet below:

audit_log_service_connector = { display_name = "${var.resourcelabel}${var.environmentprefix}defaultLogs_standard" source_kind = "logging" target_kind = "objectStorage" log_group_id = "_Audit_Include_Subcompartment" target_bucket = local.audit_log_bucket.name }

default_log_service_connector = { display_name = "${var.resourcelabel}${var.environmentprefix}auditLogs_standard" source_kind = "logging" target_kind = "objectStorage" target_bucket = local.default_log_bucket.name }

VinayKumar611 commented 8 months ago

Hi @hslange ,

Thanks for reporting issue. We had replicated the issue and working on the fix . We will provide the update on this asap.

VinayKumar611 commented 8 months ago

Hi @hslange ,

We fixed the issue provided, and now this fix is in the Integration Branch. Please take the latest code from the integration branch.

hslange commented 8 months ago

Thanks, looks good.