prehistoric-kite-30979
02/16/2022, 11:00 PM.get
works in the TS azure-native plugin for Outputs… /threadelegant-plumber-85706
02/17/2022, 11:33 AMbitter-bear-28592
02/19/2022, 11:19 AMerror: Code="InvalidRequestValue" Message="Value cannot be null.\r\nParameter name: Organization Name is empty" Target="ValidateAzurePipelineObject"
I don't see from the documentation where this value can be input as an argument, any help is appreciated 🙂most-portugal-2672
02/19/2022, 7:37 PMmillions-journalist-34868
02/20/2022, 12:23 PMmillions-journalist-34868
02/22/2022, 9:04 PMhigh-leather-15669
02/23/2022, 4:20 PMclever-byte-21551
02/23/2022, 6:14 PMManagedCluster
and we create a coupe of additional agent pools using the NewAgentPool
api.
I suspect that this causes us to recreate the cluster, when I downgraded the provider plugin it was back to normal
We keep seeing this diff in the logs:
aks updated [diff: ~agentPoolProfiles]
I don’t want to add to ignoreChanges the agentPoolProfiles because this will hinder our ability to mutate the stackbetter-forest-70644
03/03/2022, 8:55 AMhappy-parrot-60128
03/03/2022, 10:19 AMclean-alarm-24426
03/07/2022, 2:58 PMabundant-book-94104
03/09/2022, 6:08 AMlittle-apartment-30401
03/09/2022, 2:54 PMfuture-air-70511
03/09/2022, 5:17 PMbrave-florist-53599
03/09/2022, 7:44 PMMachineLearningDatastore: Unable to parse request body One or more validation errors occured
Has it been seen before?lively-gigabyte-52811
03/14/2022, 1:30 PMmillions-journalist-34868
03/15/2022, 10:48 PMbulky-kite-69343
03/17/2022, 8:37 PMDiagnostics:
azure-native:network:Subnet (scanning):
error: autorest/azure: Service returned an error. Status=<nil> Code="AnotherOperationInProgress" Message="Another operation on this or dependent resource is in progress. To retrieve status of the operation use uri: <https://management.azure.com/subscriptions/***/providers/Microsoft.Network/locations/***/operations/***?api-version=2020-11-01>." Details=[]
I am kinda stumped it always seems to deploy 3 of 8 subnets each time and fails on the rest all with the same error.wooden-receptionist-75654
03/21/2022, 11:37 AMoidcIssuerProfile
limited-rainbow-51650
03/21/2022, 3:15 PMexport function configureAzureADMembership(memberArgs: MemberArgs[]) {
let azureSsoGithubGroup = azuread.getGroupOutput({
displayName: "Azure - SSO - Github",
securityEnabled: true,
});
memberArgs.map((memberInfo) => {
let user = azuread.getUserOutput({
userPrincipalName: memberInfo.email
});
// new azuread.GroupMember(`github-sso-${memberInfo.username}`, {
// groupObjectId: azureSsoGithubGroup.id,
// memberObjectId: user.id,
// });
})
}
Before even managing the membership, I'm testing that user and group lookup work correctly. The service principal has permission Directory.Read.All
, as documented here:
https://www.pulumi.com/registry/packages/azuread/api-docs/getgroup/#api-permissions
Even with this level of access, I still get this error on each user or group lookup:
Authorization_RequestDenied: Insufficient privileges to complete the operation.
I triple checked the values of the authentication config settings for azuread:clientId
, azuread:clientSecret
and azuread:tentantId
and they are correct. Anyone an idea what I might be missing?best-state-21371
03/23/2022, 3:04 AMlimited-holiday-6625
03/24/2022, 8:06 PMazcopy
but I then i need to generate SAS tokens (which I think I can do in Pulumi, but seems like quite a lot of work to do something relatively simple).chilly-plastic-75584
03/29/2022, 1:31 AMcannot use bp (variable of type *documentdb.PeriodicModeBackupPolicy) as pulumi.Input value in struct literal: missing method ElementTypecompilerInvalidIfaceAssign
Trying to do:
dbacct, err := documentdb.NewDatabaseAccount(ctx, "databaseAccount"+environment, &documentdb.DatabaseAccountArgs{
AccountName: pulumi.String(cfgDatabaseAcct.Name),
ApiProperties: &documentdb.ApiPropertiesArgs{
ServerVersion: pulumi.String(cfgDatabaseAcct.ServerVersion),
},
BackupPolicy: bp,
}
I defined bp
bp := &documentdb.PeriodicModeBackupPolicy{
PeriodicModeProperties: &documentdb.PeriodicModeProperties{
BackupIntervalInMinutes: &cfgDatabaseAcct.BackupIntervalInMinutes,
BackupRetentionIntervalInHours: &cfgDatabaseAcct.BackupRetentionIntervalInHours,
},
Type: cfgDatabaseAcct.BackupType,
}
I adjusted PeriodicModeProperties to be a pointer based on object definition (the autogenerated example seems wrong?).
Any ideas?mysterious-australia-14256
03/29/2022, 3:03 PMnew AzureNative.ApiManagement.ApiOperationPolicy
The API Management instance is running on the consumption tier but I can add a policy manually without issue. When I try the above though I receive the error
cannot check existence of resource '/subscriptions/xxx/resourceGroups/xxx/providers/Microsoft.ApiManagement/service/xxx/apis/xxx/operations/xxx/policies/xxx': status code 400, {"error":{"code":"MethodNotAllowedInPricingTier","message":"Method not allowed in this pricing tier","details":null}}
Is this a known limitiation?
Thanks
Alansparse-pilot-48357
03/29/2022, 9:47 PMPulumi.AzureNative.DBforPostgreSQL.V20200214Preview
but I'm getting this error on the database (using Pulumi.AzureNative.DBforPostgreSQL.V20210601
)
var pgDb = new PGSQLDB.Database($"foo", new PGSQLDB.DatabaseArgs()
{
Charset = "UTF8",
Collation = "English_United States.1252",
ResourceGroupName = resourceGroup.Name,
ServerName = pgsqlServer.Name,
DatabaseName = "foo"
});
azure-native:dbforpostgresql/v20210601:Database (foo):
error: resource partially created but read failed autorest/azure: Service returned an error. Status=404 Code="ResourceNotFound" Message="The requested resource of type 'Microsoft.DBforPostgreSQL/flexibleServers/databases' with name 'foo' was not found.": Code="InternalServerError" Message="An unexpected error occured while processing the request. Tracking ID: '**redacted**'"
A few questions 🙂 - am I using the right namespaces? Is there any way of getting more info than that InternalServerError
(I tried --verbose=9
to no avail).
I found https://github.com/pulumi/pulumi-azure-native/issues/1126, but I don't think it's quite it...limited-carpenter-34991
04/05/2022, 2:45 PMstraight-sunset-92336
04/06/2022, 8:51 AMpulumi import azure-native:authorization:PolicyDefinition <name> /subscriptions/<subid>/providers/Microsoft.Authorization/policyDefinitions/<definitionid>
But the Builtin definitions are not in any subscriptions.
Tested running this:
pulumi import azure-native:authorization:PolicyDefinition ActivityLogStreamToLogAnalytics /subscription/<one of my subscription id's>/providers/Microsoft.Authorization/policyDefinitions/2465583e-4e78-4c15-b6be-a36cbc7c8b0f
But it fails:
error: Preview failed: resource '/subscription/<one of my subscription id's>/providers/Microsoft.Authorization/policyDefinitions/2465583e-4e78-4c15-b6be-a36cbc7c8b0f' does not exist
Any idea how I can get this definition imported?microscopic-appointment-31082
04/08/2022, 4:40 PMLogMetricTriggerArgs
with a ThresholdOperator
of ConditionOperator.GreaterThanOrEqual.ToString()
with a Threshold
of 1
The rule gets deployed but in Azure, the rule changes to simply be Greater than 1microscopic-appointment-31082
04/08/2022, 4:41 PMGreater Than or Equal
anyway, should I use Greater Than
0 instead?microscopic-appointment-31082
04/08/2022, 4:52 PM