incalculable-portugal-13011
09/07/2020, 5:35 PMhundreds-receptionist-31352
09/08/2020, 12:35 PMquiet-leather-94755
09/08/2020, 3:35 PMsparse-gold-89283
09/08/2020, 10:19 PMfew-painting-77267
09/09/2020, 10:42 AMproject
property to specify which project it belongs tokind-mechanic-53546
09/10/2020, 4:57 AMchilly-hairdresser-56259
09/10/2020, 3:51 PMsparse-intern-71089
09/10/2020, 9:22 PMhigh-greece-86639
09/14/2020, 9:58 PMhigh-greece-86639
09/14/2020, 9:58 PMlittle-cartoon-10569
09/15/2020, 4:52 AMhundreds-musician-51496
09/15/2020, 3:54 PMLambda was unable to delete <arn> because it is a replicated function. Please see our documentation for Deleting Lambda@Edge Functions and Replicas.
I can always delete it after waiting awhile, but thats hard in a CI script.faint-motherboard-95438
09/15/2020, 4:44 PMgetSubnetIds
in the same run of the Vpc
creation:
Error: invocation of aws:ec2/getSubnetIds:getSubnetIds returned an error: invoking aws:ec2/getSubnetIds:getSubnetIds: no matching subnet found for vpc with id REDACTED
at /pulumi/projects/node_modules/@pulumi/pulumi/runtime/invoke.js:136:33
at Http2CallStream.<anonymous> (/pulumi/projects/node_modules/@grpc/grpc-js/src/client.ts:155:9)
at Http2CallStream.emit (events.js:327:22)
at Http2CallStream.EventEmitter.emit (domain.js:485:12)
at /pulumi/projects/node_modules/@grpc/grpc-js/src/call-stream.ts:186:14
at processTicksAndRejections (internal/process/task_queues.js:79:11)
We’re using pulumi.all([vpc.id]).apply(([vpcId]) => aws.ec2.getSubnetIds({…}))
but still it fails.
Running a pulumi update
again fix the problem by itself, but we obviously don’t want to have to do that.
We are using awsx.ec2.Vpc
to create the VPC and define some custom subnets.millions-umbrella-34765
09/15/2020, 6:47 PM[profile is-signin]
[profile myprofile]
output=json
region=us-east-1
source_profile=is-signin
role_arn=arn:aws:iam::819835124123:role/Admins
so I can run aws cli like aws s3 ls --profile=myprofile
and that works fine but when I configure pulumi to with myprofile
it doesn't work.nice-airport-15607
09/15/2020, 10:57 PMpulumi refresh
and pulumi stack export > stack.json
and then pulumi stack import < stack.json
but nothing seems to be helping 😞
error: error creating AppSync Resolver: NotFoundException: No field named showScheduledReport found on type Query
AppSync Resolver:
export const showScheduledReportResolver = new aws.appsync.Resolver(
resourceName(pulumi, 'showScheduledReport-R'),
{
apiId: publicApi.id,
dataSource: readLambdaDataSource.name,
field: 'showScheduledReport',
requestTemplate: mainLambdaRequest(),
responseTemplate: mainLambdaResponse,
type: 'Query'
}
)
GraphQL:
type Query {
showScheduledReport(
Id: Int!
): ScheduledReport
}
clever-byte-21551
09/16/2020, 8:07 AMcrooked-knife-92853
09/17/2020, 7:56 PMabundant-appointment-96790
09/18/2020, 6:46 PMsilly-address-30441
09/18/2020, 6:57 PMpulumi up
, it seems to be failing because it can't delete the resource that isn't there. What's the best way out of this state?abundant-appointment-96790
09/20/2020, 6:36 PMWAFInvalidParameterException: Error reason: Your statement has multiple values set for a field that requires exactly one value., field: RULE, parameter: Rule
Here’s my code:
const exampleWebAcl = new aws.wafv2.WebAcl("exampleWebAcl", {
scope: "REGIONAL",
defaultAction: {
allow: {},
},
visibilityConfig: {
cloudwatchMetricsEnabled: true,
metricName: `${stackEnv}-waf-metric`,
sampledRequestsEnabled: true,
},
rules: [
{
name: "metric-based",
priority: 0,
statement: {
rateBasedStatement: {
aggregateKeyType: "IP",
limit: 100,
}
},
visibilityConfig: {
cloudwatchMetricsEnabled: true,
metricName: `${stackEnv}-waf-rate`,
sampledRequestsEnabled: true,
}
}
]
});
const exampleWebAclAssociation = new aws.wafv2.WebAclAssociation("exampleWebAclAssociation", {
resourceArn: loadBalancer.loadBalancer.arn,
webAclArn: exampleWebAcl.arn,
});
Any idea?eager-analyst-8893
09/20/2020, 6:56 PMlittle-cartoon-10569
09/21/2020, 4:49 AMaws.directoryservice.Directory
password? If I change the password using Pulumi, it wants to replace the Directory. If I change it outside Pulumi and ignoreChanges: ["password"]
then I get an error that it's missing the password property. Ideally, I want it to not read or write the password, just work around it.little-cartoon-10569
09/21/2020, 5:17 AMcolossal-plastic-46140
09/21/2020, 5:02 PMchilly-magazine-6129
09/21/2020, 5:09 PMchilly-hairdresser-56259
09/21/2020, 5:30 PMpulumi preview...
after the first pulumi up
there are no changes detected when running it locally. However, when I put it in Azure DevOps pipeline, after I compile the code for a dotnet function and use FileArchive()
every new compile causes pulumi to see a change
even though the branch is static and no other commits have occurred. Which my thought process is that Pulumi hashes the folder, since no files have changed the hash should remain the same. Everything should compile exactly the same.dazzling-sundown-39670
09/22/2020, 1:05 PMefs
for every mountpoint? Currently I have 1*efs and then I create a StorageClass/PersistentVolume/PersistentVolumeClaim for every different mountpoint but they still share files.clever-byte-21551
09/22/2020, 1:06 PMchilly-magazine-6129
09/22/2020, 3:31 PMsparse-intern-71089
09/22/2020, 10:16 PMsparse-intern-71089
09/22/2020, 10:16 PMgentle-diamond-70147
09/22/2020, 10:27 PM