future-refrigerator-88869
04/05/2022, 8:52 PMhelpful-account-44059
04/06/2022, 5:56 AM* error importing EC2 Key Pair (infra-deployer-7ef905e): InvalidKey.Format: Key is not in valid OpenSSH public key format
alert-zebra-27114
04/06/2022, 10:09 AMalert-zebra-27114
04/06/2022, 10:22 AMnarrow-translator-93508
04/06/2022, 10:46 AMProduction Ready
template of a GKE autopilot cluster using the Go
SDK?little-library-54601
04/06/2022, 3:01 PMAzureNative.Web.WebApp
in Pulumi), how do I set some of the critical setting that show up under Configuration->General Settings in the Azure portal? Specifically:
• Stack (want ".NET")
• .NET Version (.NET 6 (LTS))
• Platform (64 bit)
• FTP state (FTPS Only)
I have an app service that was created via the Azure CLI as a reference. In the applicable "az" commands, those settings are --runtime DOTNET|6.0
, --use-32bit-worker-process false
, and --ftps-state FtpsOnly
.
In the ARM template for the reference app service, those settings are netFrameworkVersion: v6.0
, use32BitWorkerProcess: false
, and ftpsState: FtpsOnly
.
I've used pulumi import
to generate the C# code for that reference app service, but I don't see anything in that code which seems to specify those settings. I've tried searching the Pulumi AzureNative API docs but haven't had any luck.
Can anyone point me in the right direction for this? As it stands, my app won't start (not surprisingly). Thanks.polite-napkin-90098
04/06/2022, 3:19 PMstale-orange-47562
04/06/2022, 5:37 PMbuild_result = await build_image(base_image_name, path_or_build, log_resource, cache_from)
File "/home/runner/work/platform-infrastructure-iac-state/platform-infrastructure-iac-state/stack/engineering/notification-consumer-delivery/venv/lib/python3.7/site-packages/pulumi_docker/docker.py", line 445, in build_image
f'No digest available for image {image_name}', log_resource)
pulumi_docker.docker.ResourceError: No digest available for image ***.dkr.ecr.***.<http://amazonaws.com/hc/notification-consumer-delivery:placeholder|amazonaws.com/hc/notification-consumer-delivery:placeholder>
error: an unhandled error occurred: Program exited with non-zero exit code: 1
But if we running the pulumi preview and pulumi up commands locally or even using the pulumi docker image, It works.
We have the same pulumi_cli and pulumi runtime version on Github Actions and locally.
Any idea how to solve it or Any tips for what to look for??clever-glass-42863
04/06/2022, 9:33 PMacoustic-continent-29968
04/07/2022, 9:51 AMPeeringAttachment
the returned output is only the ID of the request
, when you create a peering, essentially two parameters are created, one in the source account + region, and another in the target account + region. When you run the approval
you need the ID of the target
.
I've tried pulling it with get_peering_attachment in the target account and filtering by the Transit Gateway (target and source IDs) and it can only accept a single
result, anything other than one result will fail the execution.
I've tried working around this with boto3
to use describe_transit_gateway_attachment, but I'm having problems with consistency (the values returned from Output) are malformed and it says "<Object at 0x12341234>" instead of the value.
Would really appreciate any leads on how to proceed,
have a great day!agreeable-terabyte-59853
04/07/2022, 11:12 AMcalm-tent-21096
04/07/2022, 12:07 PMbillowy-area-48390
04/07/2022, 2:23 PMdevBucketServiceAccount = gcp.storage.get_project_service_account(devManagementProject.project_id)
I get the following error because project hasn’t been created yet:
* Error when reading or editing GCS service account not found: googleapi: Error 400: Unknown project id: 'test-dev-management', invalid
Any help would be appreciated!green-musician-49057
04/07/2022, 3:43 PMruntime
in the Pulumi.yaml
file?
Assuming the code is ported correctly, the stack state shouldn't change, is that right? We're using Pulumi's managed state store.busy-dentist-99842
04/07/2022, 4:21 PMResourceValidationPolicy
for CrossGuard that is looking for S3 Bucket Policies that would allow public traffic.
We are running into complications with the PolicyDocument.Statement
being a type of Input<Input<PolicyStatement>[]>
.
How can we get at the PolicyStatement
fields to verify things like PolicyStatement.Principal
is not set to *
without a PolicyStatement.Condition
?
Thanks in advance for the help.bitter-psychiatrist-55958
04/07/2022, 5:59 PMbrave-doctor-12316
04/07/2022, 6:48 PMdry-salesmen-32588
04/08/2022, 11:00 AMcool-glass-63014
04/08/2022, 12:21 PM+ ├─ cloudflare:index:Record _81411d169f123acc0172105edadbc20d.<redacted>.-0 created
+ ├─ cloudflare:index:Record _81411d169f123acc0172105edadbc20d.<redacted>.-1 **creating failed** 1 error
It is trying to create the same CNAME twice. How can I find this duplicate before trying to create the record resource? Or can I somehow catch the error and say it's fine and abort the second one?fancy-spoon-46046
04/08/2022, 1:04 PM@pulumi/command
on google cloud platform vm with tls.PrivateKey
apollo--production--gcp--europe-west4--command-1 (command:remote:Command)
error: ssh: handshake failed: ssh: unable to authenticate, attempted methods [none publickey], no supported methods remain
Login on aws with same key works. Also login to google cloud platform with terminal works. Anything special here to consider?bitter-eve-53295
04/08/2022, 2:41 PMbillowy-army-68599
04/08/2022, 3:07 PMhttps://www.youtube.com/watch?v=4psf6WVLxtY▾
limited-fish-67957
04/08/2022, 4:31 PMpulumi
is the my node_modules are not getting uploaded to aws lambda
. I was wondering if anyone has solved this or point me to some kind of solution of uploading the node-modules
as my serverless
function keeps giving me module not found error
bulky-insurance-47809
04/08/2022, 7:22 PMbulky-insurance-47809
04/08/2022, 7:22 PMconst vpcEndpoint = new aws.ec2.VpcEndpoint(`${config.generalTagName}-vpc-endpoint-dynamodb`, {
vpcId: vpc.id,
serviceName: "com.amazonaws.sa-east-1.dynamodb",
tags: {
Name: `${config.generalTagName}-vpc-endpoint-dynamodb`,
[config.generalTagName]: "shared",
}
});
bulky-insurance-47809
04/08/2022, 7:23 PMbulky-insurance-47809
04/08/2022, 7:23 PMconst example1 = new aws.ec2.VpcEndpointSubnetAssociation("example", {
subnetId: pulumi.output(vpc.publicSubnetIds)[0].apply(x => x.toString()),
vpcEndpointId: vpcEndpoint.id,
});
bright-france-6523
04/08/2022, 7:41 PMbulky-insurance-47809
04/08/2022, 7:45 PMprehistoric-kilobyte-36215
04/09/2022, 6:41 AMprehistoric-kilobyte-36215
04/09/2022, 6:41 AMbrainy-church-78120
04/09/2022, 2:39 PM