acoustic-florist-12628
12/17/2019, 5:43 PMpulumi login azblob://<container>
method as well as pulumi login -c <account>.<http://blob.core.usgovcloudapi.net|blob.core.usgovcloudapi.net>
. However, azblob://<container> always defaults to use <account>.<http://blob.core.windows.net|blob.core.windows.net>
, and whenever I do "pulumi login -c", I am asked for an access token, and any access key or sas token I use results in authorization errors. Am I doing something wrong, or is this just not possible at the moment?ambitious-helmet-24352
12/17/2019, 5:58 PMerror: unable to load schema information from the API server: Get <https://35.227.104.48/openapi/v2?timeout=32s>: dial tcp 35.227.104.48:443: i/o timeout
little-tailor-59400
12/17/2019, 6:28 PMlittle-tailor-59400
12/17/2019, 6:30 PMlittle-tailor-59400
12/17/2019, 6:33 PMambitious-helmet-24352
12/17/2019, 6:35 PMambitious-helmet-24352
12/17/2019, 6:35 PMlittle-tailor-59400
12/17/2019, 6:36 PMlittle-tailor-59400
12/17/2019, 6:36 PMhandsome-truck-95168
12/17/2019, 8:00 PMdefault
values in the Pulumi.yaml
? They seem to be not working but I imagine I'm doing it wrong.boundless-appointment-60129
12/17/2019, 11:52 PMconst vpcName = `unique-vpc-2334`;
const vpcArgs = {
cidrBlock: projectCidrBlock,
enableDnsHostnames: true,
enableDnsSupport: true,
tags: {
Name: vpcName,
},
};
const vpc = new aws.ec2.Vpc(
vpcName,
vpcArgs,
providerOpts,
);
It doesn't matter what I change the name to I always end up getting the same error.
error: Duplicate resource URN 'urn:pulumi:ned-pulumi::ned-pulumi::aws:ec2/vpc:Vpc::unique-vpc-2334'; try giving it a unique name
I've also tried changing the provider, deleting and recreating the stack with a new name. I have a feeling that it may be caching values/running twice with the same values. Let me know if anyone has resolved this issue, thanksplain-eye-9759
12/18/2019, 11:43 AMfolder
option for blob
My code looks like this
const myBlob = new azure.storage.Blob("blob-name", {
source: "my-path",
storageAccountName: "storage-aac-name",
storageContainerName: "container-name",
type: "Block",
name: "blob-name",
contentType: "text/plain"
})
tall-librarian-49374
12/18/2019, 11:54 AMplain-eye-9759
12/18/2019, 12:09 PMstocky-island-3676
12/18/2019, 12:10 PMpulumi stack init
: How can we set in which project
the stack will be created in?brave-window-69382
12/18/2019, 1:47 PMblue-portugal-12071
12/18/2019, 2:30 PMfull-painter-18061
12/18/2019, 2:54 PMpulumi preview
get stuck on the first pulumi:pulumi:Stack
create step of the plan?busy-umbrella-36067
12/18/2019, 4:52 PMkubernetes:allowImplicitProvider
We've started distributing an abstracted API for deploying onto k8s clusters but in some cases developers have been deploying to whatever their KUBECONFIG
env var is set toimportant-leather-28796
12/18/2019, 4:53 PMpulumi update
, how do I do that? I already pulled down the Deployment wait time with <http://pulumi.com/timeoutSeconds|pulumi.com/timeoutSeconds>
but the continued retries/restarts (resource limits are being hit) do not cause pulumi
to exit for quite a while. How can I reduce retries/shorten this wait or cycle time as I experiment?quaint-queen-45003
12/18/2019, 7:59 PMerror: could not deserialize deployment: decrypting secret value: [400] Message authentication failed
bitter-dentist-28132
12/18/2019, 10:09 PMboundless-appointment-60129
12/18/2019, 10:19 PM.get
function https://github.com/pulumi/pulumi-awsx/blob/5b247e093ed7e8a789c4a34663a5ef8a3a5acef3/nodejs/awsx/ecs/taskDefinition.ts#L226 which then leads to this error Error: Cannot call '.get' during update or preview.
. I was wondering if there's a correct way of using this or if the source needs an update?busy-umbrella-36067
12/18/2019, 10:23 PMpulumi update
and and modify your IaC code before accepting the prompt Pulumi will pick up the file changes when it applies the update.great-tomato-45422
12/19/2019, 8:24 PMgreat-tomato-45422
12/19/2019, 8:24 PMbitter-dentist-28132
12/19/2019, 8:50 PMgifted-engine-92308
12/20/2019, 9:48 AMflat-insurance-25294
12/20/2019, 10:43 AMdef run_command(command)
puts command
Open3.popen2e(command) do |stdin, stdout_err, wait_thr|
while line = stdout_err.gets
puts line
end
exit_status = wait_thr.value
abort "FAILED: #{command}" unless exit_status.success?
return exit_status
end
end
flat-insurance-25294
12/20/2019, 10:45 AMflat-insurance-25294
12/20/2019, 10:45 AM