hi folks! I am deploying a change but see an unexp...
# general
v
hi folks! I am deploying a change but see an unexpected update. The problem is that diff does not show any changes:
Copy code
without diff:
 ~  azure:containerservice:Registry prodRegistryWestus2 update




with diff:
    ~ azure:containerservice/registry:Registry: (update)
        [id=/subscriptions/*****/resourceGroups/****/providers/Microsoft.ContainerRegistry/registries/prodRegistryWestus2]
        [urn=urn:pulumi:prod::infrastructure::azure:containerservice/registry:Registry::prodRegistryWestus2]
        [provider=urn:pulumi:prod::infrastructure::pulumi:providers:azure::default_6_3_0::09ca961b-4244-4306-bef1-aad0b702a965]
        adminEnabled              : true
        exportPolicyEnabled       : true
        location                  : "westus2"
        name                      : "prodRegistryWestus2"
        networkRuleBypassOption   : "AzureServices"
        publicNetworkAccessEnabled: false
        resourceGroupName         : "prod-infra-westus2"
        sku                       : "Premium"
        trustPolicyEnabled        : false
        zoneRedundancyEnabled     : false
Any idea what is changing? As this is a prod resource I am hesitant to update the resource.
Also I ignore all changes
Copy code
registry = azure.containerservice.Registry(
    infra_conf["docker_registry"],
    opts=ResourceOptions(depends_on=[resource_group], ignore_changes=[
        "*"]
    ),
I tested in dev and looks like it added:
Copy code
"inputs": {
          "__defaults": [
            "trustPolicyEnabled"
          ],
That was the only change.