This message was deleted.
# general
s
This message was deleted.
s
That output likely comes from the wrapped TF provider. Can you confirm whether it is leaking an actual secret or not?
🙏 1
r
the secret is our tenant id so it is expected to be hidden. the problem is it shows
DEBUG
considering we don't enable debug mode anywhere.
s
That's the Azure DevOps provider?
r
just the azure native sdk
azure "<http://github.com/pulumi/pulumi-azure-native-sdk|github.com/pulumi/pulumi-azure-native-sdk>"
this is the definition of the provider
Copy code
azureProvider, err := azure.NewProvider(ctx, fmt.Sprintf("clusters-p.azurenative-(%s)", Subscriptions[subscription]), &azure.ProviderArgs{
		TenantId:       pulumi.StringPtr(os.Getenv("ARM_TENANT_ID")),
		ClientId:       pulumi.StringPtr(os.Getenv("ARM_CLIENT_ID")),
		ClientSecret:   pulumi.StringPtr(os.Getenv("ARM_CLIENT_SECRET")),
		SubscriptionId: pulumi.StringPtr(Subscriptions[subscription]),
	})
	if err != nil {
		return err
	}
Is this a bug in the provider?
s
Oh, I see.
Let me check for an existing issue
I don't see one. Can you file a bug here? https://github.com/pulumi/pulumi-azure-native/issues
👍 1
r
Hi @stocky-restaurant-98004 this is the bug https://github.com/pulumi/pulumi-azure-native/issues/2355