early-sugar-1496
11/13/2020, 12:39 PMvar aksCluster = new AzureContainerService.ManagedCluster(
"test",
new AzureContainerService.ManagedClusterArgs{});
var kubeConfig = AzureContainerService.ListManagedClusterAdminCredentials.InvokeAsync(
new AzureContainerService.ListManagedClusterAdminCredentialsArgs
{
ResourceGroupName = resourceGroup.Name,
ResourceName = aksCluster.Name,
}).Result.Kubeconfigs;
Doesn't compile, with an error on both ResourceGroupName
and ResourceName
, Cannot convert source type 'Pulumi.Output<string>' to target type 'string'
I'm pretty sure I've got a misunderstanding of properly using outputs đŸ¤” thankstall-librarian-49374
11/13/2020, 1:02 PMearly-sugar-1496
11/13/2020, 1:20 PM