steep-alligator-79173
08/20/2020, 11:18 AMeager-truck-98220
08/24/2020, 10:18 AMboundless-musician-43495
08/25/2020, 8:19 PMcolossal-room-15708
08/26/2020, 5:08 AMadamant-advantage-95831
08/27/2020, 12:08 AMwarning: inputs to import do not match the existing resource; importing this resource will fail
-- there's a bit on the Info section but like for an app service, it says [diff: ~siteConfig]; 1 warning
how do I know what it wants for the site config?wet-noon-14291
08/27/2020, 11:04 AMpulumi up
after doing a az login
and selecting user B it still complains that user A doesn't have in the kubernetes I'm trying to set up.
Do I need to authenticate with kubectl somehow?icy-train-33339
08/31/2020, 6:57 AMicy-train-33339
08/31/2020, 6:57 AMicy-train-33339
08/31/2020, 6:57 AMfancy-nightfall-60106
09/01/2020, 1:33 PMWebTest
- according to https://docs.microsoft.com/en-us/rest/api/monitor/metricalerts/createorupdate#create-or-update-a-web-test-alert-rule it looks like it doesn't need a scopes
-property, but Pulumi requires that Scopes
is not empty.
Settings scopes to ApplicationInsightsId failes with:
Alert scope is invalid
Not settings Scopes failes with:
Pulumi.Azure.Monitoring.MetricAlertArgs._scopes is required but was not given a value (Parameter '_scopes')
Any ideas?
Sample code in thread.limited-rainbow-51650
09/07/2020, 6:56 AMApplication Gateway Ingress Controller
yet. Does anyone have a workaround integrated in their Pulumi setup?
https://docs.microsoft.com/en-us/azure/application-gateway/ingress-controller-overviewfancy-nightfall-60106
09/07/2020, 8:24 AMrefreshing urn:pulumi:<stack>::azure:cosmosdb/sqlContainer:SqlContainer::<container>: ID was missing the `sqlDatabases` element
I think the ID is referring to the ResourceId in Azure - and the format of a container Id is:
/subscriptions/<subscriptionid>/resourceGroups/<resourcegroup>/providers/Microsoft.DocumentDB/databaseAccounts/<accoutname>/apis/sql/databases/<db>/containers/<container>
There is not reference to "sqlDatabases" here and Im not sure how to proceed to get 'pulumi refresh' to run successfully.
Im not quite sure when this error occured, but Im now using Pulumi.Azure 3.20 and Pulumi 2.9.1few-pillow-1133
09/08/2020, 6:27 PMexample_run_book = azure.automation.RunBook("exampleRunBook",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
automation_account_name=example_account.name,
log_verbose=True,
log_progress=True,
description="This is an example runbook",
runbook_type="PowerShellWorkflow",
publish_content_link=azure.automation.RunBookPublishContentLinkArgs(
uri="<https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1>",
))
worried-stone-50514
09/09/2020, 11:59 PMminiature-leather-70472
09/10/2020, 2:29 PMfamous-postman-81672
09/14/2020, 3:32 PMpulumiprovidersazure (default_3_17_0):
error: could not read plugin [C:\Users\someuser\.pulumi\plugins\resource-azure-v3.17.0\pulumi-resource-azure.exe] stdout: EOF
worried-stone-50514
09/15/2020, 11:40 PMrapid-oil-61997
09/18/2020, 11:12 AMvar virtualNetwork = new VirtualNetwork("vNet", new VirtualNetworkArgs
{
Location = resourceGroup.Location,
ResourceGroupName = resourceGroup.Name,
Tags = tag,
AddressSpaces = vnetAddressSpace,
Name = "midhun-poc-pulumi-vnet",
Subnets =
{
new VirtualNetworkSubnetArgs
{
Name = "subnet1",
AddressPrefix = "10.198.10.0/29",
SecurityGroup = nsg.Id
},
new VirtualNetworkSubnetArgs
{
Name = "subnet2",
AddressPrefix = "10.198.10.8/29",
SecurityGroup = nsg.Id
}
}
});
when creating network interface as below, how can i refer to the subnet that i created above in this section ?
var networkInterface = new NetworkInterface("nic", new NetworkInterfaceArgs
{
Name = "midhun-poc-pulumi-vm-nic",
Tags = tag,
Location = resourceGroup.Location,
ResourceGroupName = resourceGroup.Name,
IpConfigurations = new NetworkInterfaceIpConfigurationArgs
{
Name = "midhun-poc-pulumi-nic-ip",
SubnetId =
}
});
Any help is appreciated. Thanks in advance.better-rainbow-14549
09/21/2020, 1:00 PMincalculable-dawn-53071
09/22/2020, 12:15 PMonEvent
to register a typescript function that is in the code, but i want to trigger a function that is deployed to from a pipeline.great-analyst-59265
09/23/2020, 9:12 AMsilly-pager-68915
09/24/2020, 5:55 AMbroad-morning-54433
09/24/2020, 7:45 AMgorgeous-cpu-53034
09/24/2020, 1:25 PMwet-noon-14291
09/28/2020, 7:13 PMbright-quill-34162
09/29/2020, 3:36 PMfierce-megabyte-1177
09/30/2020, 10:44 AMbright-quill-34162
09/30/2020, 7:13 PMbright-quill-34162
09/30/2020, 8:40 PMvar functionApp0 = new AzureNextGen.Web.Latest.WebAppFunction("AddDeploymentsByIoTHubName", new AzureNextGen.Web.Latest.WebAppFunctionArgs
{
FunctionName = "AddDeploymentsByIoTHubName",
Name = $"c2e-{env}-funcapp-iep/AddDeploymentsByIoTHubName",
ResourceGroupName = resourceGroup.Name,
});
And here is the error, I've tried several different ways to escape that "/"...
error: cannot check existence of resource /subscriptions/<subscription>/resourceGroups/c2e-dev-shared-resources/providers/Microsoft.Web/sites/c2e-dev-funcapp-iep*%2F*AddDeploymentsByIoTHubName/functions/AddDeploymentsByIoTHubName: autorest/azure: error response cannot be parsed: "" error: EOF: autorest/azure: error response cannot be parsed: "" error: EOFmysterious-australia-14256
10/01/2020, 11:46 AMpulumi config set azure:<option>