You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the ""oci_core_virtual_circuit" "azure_fastconnect_virtual_circuit"" resource of the "main.tf" file of the "fastconnect" module, the condition for creating a FastConnect with Azure ExpressRoute is:
Specifically for Azure the result is: "Microsoft Azure" instead of "Azure".
So the word "Azure" used as condition to create the FastConnect is wrong. Need to be "Microsoft Azure"
The text was updated successfully, but these errors were encountered:
In the ""oci_core_virtual_circuit" "azure_fastconnect_virtual_circuit"" resource of the "main.tf" file of the "fastconnect" module, the condition for creating a FastConnect with Azure ExpressRoute is:
count = var.fastconnect_provider == "Azure" ? 1 : 0
where "var.fastconnect_provider" is a variable passed to the module.
In the same resource block the "provider_service_id" parameter is valued as:
provider_service_id = data.oci_core_fast_connect_provider_service.fast_connect_provider_service.id
that is defined in the file "datasources.tf" as:
Specifically for Azure the result is: "Microsoft Azure" instead of "Azure".
So the word "Azure" used as condition to create the FastConnect is wrong. Need to be "Microsoft Azure"
The text was updated successfully, but these errors were encountered: