bland-minister-14373
08/30/2021, 11:48 AMAzure classic library of pulumi(https://www.pulumi.com/docs/reference/pkg/azure/containerservice/registry/)
var registry = new Azure.ContainerService.Registry(registryName,
                new Azure.ContainerService.RegistryArgs
            {
                AdminEnabled = true,
                Name = registryName,
                ResourceGroupName = resourceGroup.Name,
                Sku = "Standard",
                Tags = 
                {
                    {"scope", "sample scope"}
                },
            });
Url = registry.LoginServer.Apply(loginServer=> $"https://{loginServer}");
Password = registry.AdminPassword;
Username = registry.AdminUsername;
 with the new api, AzureNative (https://www.pulumi.com/docs/reference/pkg/azure-native/containerregistry/registry/)No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by