Open yarinm opened 3 years ago
Another thing that always differs, provider's clientSecret:
pulumi:providers:azure-native credentials updating [diff: ~clientSecret]
I'm defining it like this:
p, err := azurenative.NewProvider(ctx, "credentials", &azurenative.ProviderArgs{
ClientId: pulumi.String(azureConfig.Credentials.Id),
ClientSecret: pulumi.String(azureConfig.Credentials.Secret),
SubscriptionId: pulumi.String(azureConfig.SubscriptionID),
TenantId: pulumi.String(azureConfig.Credentials.TenantId),
Environment: azureEnvToPulumiName(azureConfig.Environment),
}, pulumi.AdditionalSecretOutputs([]string{"clientSecret"}), pulumi.Aliases([]pulumi.Alias{{
Type: pulumi.String("pulumi:providers:azure-nextgen"),
}}))
@mikhailshilkov another weird diff that happens :
azure-native:containerservice/v20210201:ManagedCluster aks updating [diff: ]
This time it doesn't state anything
My blob storage containers are created like this:
And during each update I keep seeing them as different and that triggers unnecessary updates:
To remedy this, I've added
, pulumi.IgnoreChanges([]string{"defaultEncryptionScope", "denyEncryptionScopeOverride"})
until this is fixed