elegant-carpet-8859
11/25/2020, 10:55 PMelegant-carpet-8859
11/25/2020, 10:59 PMelegant-carpet-8859
11/25/2020, 10:59 PMbreezy-butcher-78604
11/26/2020, 2:46 AMpulumi preview
without having to provide cloud provider credentials? I keep getting an error but given it's just comparing the new state to the existing state stored in Pulumi, surely it shouldn't need any cloud provider creds?white-pencil-38837
11/26/2020, 12:26 PM// Register the Certificate CRD.
new certificates.certmanager.CertificateDefinition("certificate");
white-pencil-38837
11/26/2020, 12:27 PMtall-jackal-67163
11/26/2020, 12:27 PMError, failed to delete instance because deletion_protection is set to true. Set it to false to proceed with instance deletion
. Unfortunately, I can't find where I can set that. I tried setting the protected=False
in the ResourceOptions but that does not work either.wet-noon-14291
11/26/2020, 10:33 PMchange-secrets-provider
suppose to take?dazzling-sundown-39670
11/27/2020, 6:59 PMpulumi up
?ancient-boots-22113
11/28/2020, 8:27 AMeager-lion-7694
11/29/2020, 3:24 PMgifted-island-55702
11/30/2020, 12:41 PMbored-intern-60856
11/30/2020, 5:00 PMDiagnostics:
pulumi:pulumi:Stack (#####):
error: an unhandled error occurred: Program exited with non-zero exit code: -1
Arbitrarily. Is this regarding my code or has anyone else had it?narrow-area-20379
11/30/2020, 8:03 PMComponentResource
in a separate package or folder, how can I reference a file from that folder using pulumi.asset.FileAsset
?
When I run it the path is done relative to where the ComponentResource is called but the asset it needs are inside the ComponentResource directory.eager-lion-7694
11/30/2020, 8:42 PMworried-wall-60272
11/30/2020, 9:53 PMtf2pulumi --target-language go
working/supported?eager-lion-7694
11/30/2020, 10:15 PMancient-boots-22113
12/01/2020, 8:11 AMquaint-translator-50744
12/01/2020, 1:18 PMred-lighter-44012
12/01/2020, 2:09 PMbitter-application-91815
12/01/2020, 3:37 PMastonishing-quill-88807
12/01/2020, 3:59 PMbitter-application-91815
12/01/2020, 6:47 PMcalm-parrot-72437
12/02/2020, 12:59 AMeager-lion-7694
12/02/2020, 1:21 AMpulumi up
gives me this error after ~10 minutes:
error waiting for service (service arn) to reach a steady state: ResourceNotReady: exceeded wait attempts
how can I debug why its taking so long? the Fargate service does seem available via the public endpoint so not sure if this is waiting for the right signal.narrow-area-20379
12/02/2020, 7:26 AMapply
callback called during preview when the value is not available? Is this broken functionality?
To access the raw value of an output, and transform that value into a new value, use apply . This method accepts a callback that will be eventually invoked with the raw value, once it is available.
dazzling-sundown-39670
12/02/2020, 8:37 AM- uses: <docker://pulumi/actions>
with:
args: preview --stack Safira/sandbox
It tells me No stack configured for branch 'refs/pull/698/merge'
but I don't want that stack associated with a certain branch, I'm running it on a trigger word in pull requests.steep-angle-29984
12/02/2020, 10:56 AMboundless-library-86481
12/02/2020, 11:34 AMthis.linuxAppServicePlan = new azure_nextgen.web.latest.AppServicePlan(
name,
{
name: name,
kind: "linux",
location: this.resourceGroup.location,
resourceGroupName: this.resourceGroup.name,
sku: {
name: "B1",
tier: "Basic",
size: "B1",
},
}
);
this.webApp = new azure_nextgen.web.latest.WebApp(name, {
name: name,
kind: "app,linux,container",
serverFarmId: this.linuxAppServicePlan.id,
location: this.resourceGroup.location,
resourceGroupName: this.resourceGroup.name,
httpsOnly: true,
});
I created these resources in the portal first to take a look to the ARM template. The key element seems to be the kind
as linux
for the service plan and app,linux,container
for the web app. However, Pulumi seems to be creating a windows app plan and a standard web app. Do you have an idea of what could be wrong?cuddly-smartphone-15267
12/02/2020, 11:34 AMcuddly-smartphone-15267
12/02/2020, 11:34 AMbrave-planet-10645
12/02/2020, 11:38 AMComponentResource
model: https://www.pulumi.com/docs/intro/concepts/programming-model/#authoring-a-new-component
Don't forget that you can share these (and a lot of the code you write) in the same way you'd share other such libraries: npm, nuget, pip etccuddly-smartphone-15267
12/02/2020, 11:56 AMbroad-dog-22463
12/02/2020, 12:26 PMcuddly-smartphone-15267
12/02/2020, 12:40 PMclass Program
{
static Task<int> Main() => Deployment.RunAsync<MyStack>();
}
broad-dog-22463
12/02/2020, 12:47 PMcuddly-smartphone-15267
12/03/2020, 12:33 PMbroad-dog-22463
12/03/2020, 12:49 PMcuddly-smartphone-15267
12/03/2020, 1:06 PMbroad-dog-22463
12/03/2020, 1:12 PMcuddly-smartphone-15267
12/03/2020, 1:21 PMbroad-dog-22463
12/03/2020, 1:28 PM