creamy-knife-93354
05/09/2021, 2:35 PMfast-vegetable-68654
05/09/2021, 7:04 PMif (config.accountName === "ops") {...}
or is that even possible?
I'm coming from TF and am possibly trying to fit Pulumi to the patterns in TF and that may be a bad idea. Any guidance would be great!refined-activity-51649
05/10/2021, 5:46 AM__main__.py
. But this file doesn’t change when I switch between stacks(of course). What should I do? Should I use git? 😞fast-vegetable-68654
05/10/2021, 3:35 PMelegant-garden-76734
05/10/2021, 6:43 PMpulumi destroy
fast-vegetable-68654
05/10/2021, 6:56 PMimportant-leather-51045
05/11/2021, 4:09 AMbillowy-army-68599
apply()
- if you're struggling to understand, let me know if this helps!
https://www.leebriggs.co.uk/blog/2021/05/09/pulumi-apply.htmlripe-room-94618
05/11/2021, 7:55 AMthousands-art-55778
05/11/2021, 12:16 PMflat-queen-33017
05/11/2021, 8:24 PMglamorous-alligator-88004
05/12/2021, 12:26 PMbored-hamburger-89415
05/12/2021, 12:42 PM❯ pulumi config set aws:region us-west-2
❯ pulumi config get aws:region
us-west-2
❯ pulumi up
error: 1 error occurred:
* missing required configuration key "aws:region": The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
Set a value using the command `pulumi config set aws:region <value>`.
best-nest-62071
05/12/2021, 7:26 PM-c
option for starting a new pulumi project? example command
pulumi new aws-python -n test -c .....
I want to start a pulumi python project and configure the main
and venv
option in the Pulumi.yaml file at project creation.best-nest-62071
05/12/2021, 7:28 PMpulumi new
that -c
accepts a stringArray but I can not figure this out.chilly-appointment-94535
05/17/2021, 9:52 PMalert-oyster-87530
05/18/2021, 2:09 AMwhich could not be serialized because Cannot read property 'executionQueuePromise' of undefined
and other similar serialisation errors.
I did get some success with the deploy when I used import('./../dist/src/rpc/startTransaction.js')
inside the GCF handler, but now the dist
directory is not uploaded as a dependency and is not present in the GCF (and it fails on request).
How can I force Pulumi to include additional source files?able-toothbrush-92865
05/18/2021, 2:53 PMstale-refrigerator-86789
05/18/2021, 6:19 PMstale-refrigerator-86789
05/18/2021, 6:21 PMstale-refrigerator-86789
05/18/2021, 6:21 PMalert-oyster-87530
05/18/2021, 6:47 PMhappy-window-22449
05/19/2021, 3:01 PMquiet-truck-58459
05/19/2021, 3:46 PMextra_args
to the docker local Image
buider:
File ".../venv/lib/python3.9/site-packages/pulumi_docker/docker.py", line 574, in get_command_line_message
argstr = " ".join(args) if report_full_command_line else args[0]
TypeError: sequence item 2: expected str instance, Output found
error: an unhandled error occurred: Program exited with non-zero exit code: 1
quiet-truck-58459
05/19/2021, 3:48 PMquiet-truck-58459
05/19/2021, 3:51 PMimage_name = <<Output>>
image = Image(
"image",
image_name=image_name,
build=DockerBuild(
context="..",
extra_options=["--cache-from", image_name],
),
)
straight-teacher-66836
05/19/2021, 5:13 PMadventurous-camera-87788
05/19/2021, 9:25 PMazure-native
module & couldn't find a way to specify that I want redis version 6.0.3 and by default it creates redis version 4.0.14. Can someone please help?bumpy-pillow-82843
05/20/2021, 7:13 AMquiet-translator-27586
05/20/2021, 2:14 PMimport * as pulumi from "@pulumi/pulumi";
import * as awsx from "@pulumi/awsx";
// Create a load balancer to listen for requests and route them to the container.
const listener = new awsx.elasticloadbalancingv2.NetworkListener("bff-meds", { port: 8888 });
// Define the service, building and publishing our "./app/Dockerfile", and using the load balancer.
const service = new awsx.ecs.FargateService("bff-meds", {
desiredCount: 2,
taskDefinitionArgs: {
containers: {
nginx: {
image: awsx.ecs.Image.fromPath("bff-meds", "./app"),
memory: 512,
portMappings: [listener],
},
},
},
});
// Export the URL so we can easily access it.
export const frontendURL = pulumi.interpolate `http://${listener.endpoint.hostname}/`;