average-market-57523
10/11/2021, 5:04 PMaverage-market-57523
10/11/2021, 5:05 PMbulky-area-51023
10/11/2021, 5:43 PMpulumi up
in different stacks? Managed to find some open issues about enabling parallelism in automation API, wanted to make sure whether it is safe in case of CLI.worried-knife-31967
10/11/2021, 7:13 PMDependsOn = { previousItem }
but a nice way to do it.
It's also a ComponentResource that I want to run in series if that matters.
This is likely one of those "I've been looking at this for like 4 hours, and the solution is obvious" kinda situationsworried-knife-31967
10/11/2021, 7:22 PMFunctionApp lastApp = null!;
foreach (var app in apps)
{
ComponentResourceOptions options = lastApp == null ? null! : new ComponentResourceOptions {
DependsOn = {
lastApp
}
};
var cosmosDbRoles = new CosmosDbRoles($"{StackConstants.ApplicationName.ToLower()}-{app.Key}-cosmosdbroles",
new CosmosDbRoleArgs()
{
ResourceGroupName = globalResourceGroup.Name,
FunctionIdentity = app.Value.AppIdentity,
CosmosDatabaseAccountName = cosmos.CosmosDatabaseAccountName,
CosmosDatabaseAccountId = cosmos.CosmosDatabaseAccountId
}, options);
lastApp = app.Value;
}
worried-knife-31967
10/11/2021, 7:22 PMrich-cat-16319
10/12/2021, 6:58 AMlittle-summer-88406
10/12/2021, 8:09 AMlittle-summer-88406
10/12/2021, 8:28 AMgreat-sunset-355
10/12/2021, 8:32 AMpulumi config set --path names[0]
dry-sugar-63293
10/12/2021, 10:02 AMenough-motorcycle-97835
10/12/2021, 11:34 AMhallowed-horse-57635
10/12/2021, 1:36 PMwet-noon-14291
10/12/2021, 1:39 PMTypeError: Invalid Version
in an automation project and knows what to do? The weird thing is that I only get it for every second request.
TypeError: Invalid Version:
at new SemVer (/src/api/node_modules/@pulumi/pulumi/node_modules/semver/semver.js:332:11)
at LocalWorkspace.<anonymous> (/src/api/node_modules/@pulumi/pulumi/automation/localWorkspace.js:561:29)
at Generator.next (<anonymous>)
at fulfilled (/src/api/node_modules/@pulumi/pulumi/automation/localWorkspace.js:18:58)
sparse-spring-91820
10/12/2021, 1:55 PMaws:region
config is set. Any clues?
I created resources on other pc and then switched pc and selected same stack. But when I try to destroy it, this error pops out.little-summer-88406
10/12/2021, 2:35 PMimportant-zebra-56988
10/12/2021, 4:27 PMaws.ec2.Instance.VpcSecurityGroupIds
?
## with vpc_security_group_ids as a List
error: aws:ec2/instance:Instance resource 'XXXX' has a problem: Attribute must be a single value, not a list. Examine values at 'Instance.VpcSecurityGroupIds'.
## With vpc_security_group_ids as a string
error: aws:ec2/instance:Instance resource 'XXX' has a problem: Attribute should be a list. Examine values at 'Instance.VpcSecurityGroupIds'
rapid-raincoat-36492
10/12/2021, 5:22 PMechoing-motherboard-16358
10/12/2021, 5:28 PMicy-jordan-58549
10/12/2021, 8:22 PMdependsOn
? I expect that resource that dependsOn other will wait until other will do the update or delete, which is not true and this resource start earlier it’s update then it’s implicit dependenciesbrash-airline-37413
10/13/2021, 5:22 AMswift-island-2275
10/13/2021, 9:08 AMhundreds-airport-37168
10/13/2021, 9:21 AMDiagnostics:
confluent:index:ConfluentEnvironment (saaaa):
error: could not validate provider configuration: 1 error occurred:
* Invalid or unknown key
Ive tried both env variables for confluent username/password and also to have the username and password in the config, still get the same errorfuture-window-78560
10/13/2021, 9:32 AMlittle-summer-88406
10/13/2021, 9:47 AMlittle-summer-88406
10/13/2021, 9:48 AMdry-answer-66872
10/13/2021, 3:51 PMfierce-cat-91199
10/13/2021, 9:29 PMComponentResource
Is there a way to reimport these resources so that I don't have to delete and recreate them?bitter-sunset-72727
10/14/2021, 7:01 AMgreat-sunset-355
10/14/2021, 9:36 AMpulumi.Output.all(*[x.id for x in vpc.private_subnets]).apply(lambda args: ','.join(args))
This triggers an unnecessary update.
vpc.private_subnets
is a list of ec2.Subnet
inside a ComponentResource