prehistoric-nail-50687
02/07/2021, 11:32 AMazure-nextgen
provider is not OSS: https://github.com/pulumi/pulumi-azure-nextgen/issues/36
One of the drivers why we have chosen pulumi also was the fact that it is OSS, unfortunately today I noticed that the main component we use is actually not. Iām not yet sure how to deal with it and I need to talk to the whole team about it, but this was very unexpected šbroad-dog-22463
02/07/2021, 2:14 PMcold-caravan-83486
02/08/2021, 11:58 AMtall-needle-56640
02/08/2021, 10:06 PMResourceGroup.Get()
require an ID? I don't see it being used in the spec.tall-needle-56640
02/10/2021, 9:28 PMMicrosoft.Web/sites
and Microsoft.KeyVault/vaults/secrets
both have objects called properties
. However, in AzureNextGen, they are not treated the same. In WebApp
, the properties object disappears completely and all the sub-objects are brought up a level. However, in Secret
(KeyVault), there is SecretProperties
. Why are these treated differently? Could SecretPropertiesArgs
just merge into Secret
?fancy-umbrella-67692
02/10/2021, 9:44 PMfailed creating container: containers.Client#Create: Failure sending request: StatusCode=409 -- Original Error: autorest/azure: Service returned an error. Status=<nil> Code="PublicAccessNotPermitted" Message="Public access is not permitted on this storage account.
very easy to replicate:
1. create storage account with no public blob access; pulumi up
2. alter the code to update storage account with public blob access and create a container; pulumi up
bright-eve-47520
02/11/2021, 2:23 AMerror: autorest/azure: error response cannot be parsed: "" error: EOF
verbose logging doesnāt reveal anything extra
provider received rpc error Unknown: autorest/azure: error response cannot be parsed: "" error: EOF
Does anybody know a way to debug further. Is there somewhere in the Azure portal maybe that can shed some light on whatās failing?full-winter-70537
02/11/2021, 4:29 AMOutput
either the AccessKey
or a Private Endpoint Connection
for an Azure App Config instance?
https://www.pulumi.com/docs/reference/pkg/azure-nextgen/appconfiguration/configurationstore/tall-librarian-49374
02/11/2021, 1:38 PMLatest
modules and introduces top-level resources instead. Iād appreciate your feedback on it! See this GitHub comment:
https://github.com/pulumi/pulumi-azure-nextgen/issues/169#issuecomment-777458268best-jordan-23853
02/11/2021, 5:46 PMtall-needle-56640
02/12/2021, 5:29 PMbitter-bear-28592
02/15/2021, 4:18 AMbreezy-animal-52081
02/15/2021, 11:43 AMPulumi.Azure.Sql.DatabaseArgs.Edition
Ā property to "GeneralPurpose" I can't see how to set ComputeModel to serverless.
Here is the equivalent Azure command line call:
New-AzSqlDatabase -ResourceGroupName $resourceGroupName -ServerName $serverName -DatabaseName $databaseName -ComputeModel Serverless -Edition GeneralPurpose -ComputeGeneration Gen5 -MinVcore 0.5 -MaxVcore 2 -AutoPauseDelayInMinutes 720
Ā as per this page:Ā https://docs.microsoft.com/en-gb/azure/azure-sql/database/serverless-tier-overview#use-powershell
Thanks!breezy-apartment-46543
02/17/2021, 2:09 PMtall-needle-56640
02/17/2021, 10:16 PMSharedAccessSignature.SignedBlobReadUrl
in NG?bitter-bear-28592
02/17/2021, 11:48 PMdisplay_name,name
must be specified`
`error: azuread:index/application:Application resource 'test' has a problem: ExactlyOne: "name": one of display_name,name
must be specified`
error: Preview failed: one or more inputs failed to validate
few-coat-22129
02/18/2021, 1:03 AMAzure Roles Assignments
for a resource?
For Example: in the portal I can, from the Access Control blade for a database server, assigned the role of SQL DB Contributor to an App service)
Thanks!brave-winter-60074
02/18/2021, 8:02 PMred-lighter-44012
02/19/2021, 10:27 PMno pg_hba.conf entry for host...
error on a freshly provisioned server (in the same pulumi stack).
If I then run pulumi up again, everything passes and I can create the database users (postgres roles) and their grants.
It seems that the firewall rule im applying (allowing connectivity) gets applied / created too late.wet-noon-14291
02/21/2021, 8:40 AMaz aks get-credentials?
before running pulumi?bitter-bear-28592
02/21/2021, 10:43 PMtall-needle-56640
02/22/2021, 6:34 PMrough-tomato-98795
02/23/2021, 11:52 AMfew-coat-22129
02/25/2021, 6:01 AMpulumi stack rm <value>
)
However i get a message saying it's still trying to use the old subscription:
azure-nextgen:resources:ResourceGroup (resourceGroup): error: autorest/azure: Service returned an error. Status=<nil> Code="ReadOnlyDisabledSubscription" Message="The subscription is disabled and therefore marked as read only. You
cannot perform any write actions on this subscription until it is re-enabled."Is there anywhere else the old subscription is cached?
rhythmic-activity-46295
02/25/2021, 1:36 PMRESOURCE_GROUP_NAME=rg-name
AZURE_STORAGE_ACCOUNT=sa-account-name
STORAGE_CONTAINER_NAME="pulumi-state"
CONNECTION_STRING=$(azĀ storageĀ accountĀ show-connection-stringĀ -nĀ "$AZURE_STORAGE_ACCOUNT"Ā -gĀ $RESOURCE_GROUP_NAMEĀ -oĀ tsv)
azĀ storageĀ containerĀ createĀ -nĀ "$STORAGE_CONTAINER_NAME"Ā --connection-stringĀ "$CONNECTION_STRING"
-Ā generateĀ aĀ sasĀ token
end=`dateĀ -uĀ -dĀ "30Ā minutes"Ā '+%Y-%m-%dT%H:%MZ'`
AZURE_STORAGE_SAS_TOKENĀ =Ā $(azĀ storageĀ accountĀ generate-sasĀ --permissionsĀ cdlruwapĀ --account-nameĀ "$AZURE_STORAGE_ACCOUNT"Ā --servicesĀ qtĀ --resource-typesĀ scĀ --expiryĀ "$end"Ā --outputĀ tsv)
this is the error am getting: /azdo_projects$ pulumi login azblob://pulumi-state
error: problem logging in: unable to open bucket azblob://pulumi-state: azureblob.OpenBucket: accountName is required
followed this example here but no luck : https://woivre.com/blog/2020/02/pulumi-store-your-state-in-azure-storagenice-guitar-97142
02/25/2021, 9:25 PMnext-gen
in our Typescript project and canāt find any mention of Certificate
under keyvault
. does it live somewhere else now? this used to be under azure.keyvault.Certificate
nice-guitar-97142
02/25/2021, 9:27 PMminiature-leather-70472
02/26/2021, 10:56 AMbrave-winter-60074
02/26/2021, 11:30 AMvar viewUpdatesSubscription = new EventSubscription("viewUpdatesSubscription", new EventSubscriptionArgs
{
Destination = new AzureFunctionEventSubscriptionDestinationArgs()
{
EndpointType = EndpointType.AzureFunction.ToString(),
MaxEventsPerBatch = 1,
ResourceId =
signalrNegotiator.FunctionAppResourceId.Apply(
id => $"{id}/functions/ViewUpdatesTopicSubscriber"),
},
EventSubscriptionName = coreRandomSuffix.Apply(random => $"view-updates-subscription-{random}"),
Scope = viewUpdatesTopicId, // eventSubscriptionScope,
});
clean-appointment-35715
02/27/2021, 9:43 PMaz aks update -n $ AKS_NAME -g $ RG_NAME \
--attach-acr $ (az acr show -n $ ACR_NAME --query "id" -o tsv)
While I can't figure out how to replicate it from pulumi.
can you recommend me some examples in nodejs that i can use? Thank youclean-appointment-35715
02/27/2021, 9:43 PMaz aks update -n $ AKS_NAME -g $ RG_NAME \
--attach-acr $ (az acr show -n $ ACR_NAME --query "id" -o tsv)
While I can't figure out how to replicate it from pulumi.
can you recommend me some examples in nodejs that i can use? Thank youtall-librarian-49374
02/28/2021, 8:06 AMclean-appointment-35715
03/01/2021, 7:54 AM