dazzling-scientist-80826
11/25/2018, 5:55 PMdazzling-scientist-80826
11/25/2018, 6:13 PMeager-area-86739
11/25/2018, 6:52 PMconst theQueue = aws.sqs.getQueue({
name: "the-queue"
});
exports.QueueArn = theQueue.arn.apply(arn => arn);
However, the const theQueue
is empty.
What I'm doing wrong?
Thanksgorgeous-egg-16927
11/26/2018, 4:10 PMstraight-guitar-55156
11/27/2018, 12:00 AMbusy-umbrella-36067
11/27/2018, 12:12 AMfull-dress-10026
11/27/2018, 12:55 AMulimits
key in a cloudAws.Service
? https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definition_parameters.html#container_definition_limitsfull-dress-10026
11/27/2018, 12:57 AMhigh-morning-17948
11/27/2018, 3:53 AMbusy-umbrella-36067
11/27/2018, 4:45 AMbusy-umbrella-36067
11/27/2018, 4:46 AMfaint-application-2746
11/27/2018, 5:07 AMfaint-application-2746
11/27/2018, 5:12 AMfaint-application-2746
11/27/2018, 5:13 AMFirecracker was built by developers at Amazon Web Services to enable services such as AWS Lambda and AWS Fargate
faint-application-2746
11/27/2018, 5:13 AMbulky-policeman-29913
11/27/2018, 12:17 PMcold-coat-35200
11/27/2018, 12:56 PMproviders = {
aws.eu_central_1 = "aws"
aws.eu_west_1 = "aws.eu-west-1"
}
where "aws" means the default aws providerfull-dress-10026
11/27/2018, 8:30 PMwhite-balloon-205
export let accountDetails = aws.getCallerIdentity();
full-dress-10026
11/27/2018, 8:40 PMlambdaArn
to swaggerSpec
is a type Output
. What is the correct way to write a function like swaggerSpec
to operate on `Output`s?
[1] https://github.com/pulumi/examples/blob/6852169b91da1d9de6912656fead3a355d6c57a3/aws-ts-serverless-raw/index.ts#L73-L82full-dress-10026
11/27/2018, 8:45 PMMyOrg/example-dev
, does pulumi.getStack()
return example-dev
or MyOrg/example-dev
?full-dress-10026
11/27/2018, 8:56 PMNetwork
from an existing VPC with this code:
const network = infra.Network.fromVpc("network", {
vpcId: datomicVpcId,
subnetIds: datomicSubnets,
publicSubnetIds: datomicSubnets,
securityGroupIds: [appSecurityGroupId],
usePrivateSubnets: false
});
subnetIds
and publicSubnetIds
are marked as Type 'Output<any[]>' is not assignable to type 'Input<Input<string>>[]'
. datomicSubnets
is defined as:
export let datomicSubnets = datomicStorageStack.outputs.apply(o => [o["Subnet0"], o["Subnet1"], o["Subnet2"]]);
Is there a way to make this work?full-dress-10026
11/27/2018, 9:57 PMpA
and pB
, that need to be deployed. Before pB
can be deployed, I have some custom CLI stuff that needs to be run that depends on pA
outputs. Is it possible to do this with Pulumi?full-dress-10026
11/27/2018, 10:29 PMfull-dress-10026
11/27/2018, 11:16 PMapply
across multiple outputs?busy-umbrella-36067
11/27/2018, 11:19 PMfailed to verify snapshot: child resource urn:pulumi:cointainers-dev::XXC-0151 refers to missing parent XXX
busy-umbrella-36067
11/27/2018, 11:20 PMbusy-umbrella-36067
11/27/2018, 11:24 PMDiagnostics:
kubernetes:core:Service (XXXXX-XXX-0151):
error: Preview failed: 2 errors occurred:
* Resource XXXXX-XXX-0151' was created but failed to initialize
* Service does not target any Pods. Application Pods may failed to become alive, or field '.spec.selector' may not match labels on any Pods
error: an error occurred while advancing the preview
If I’m trying to update the state of my infrastructure to detect some drift and fix it, this would be a blockerfull-dress-10026
11/27/2018, 11:45 PMfull-dress-10026
11/28/2018, 12:11 AMprod
and project B has stack name prod