refined-teacher-35628
08/17/2020, 5:43 PMrefined-teacher-35628
08/17/2020, 5:43 PMpulumi destroy
refined-teacher-35628
08/17/2020, 5:43 PMrefined-teacher-35628
08/17/2020, 5:44 PMpulumi:pulumi:Stack infra_db-dev
- ββ aws:ec2:Subnet migration-vpc-public-1 deleting completing deletion from previous update
- ββ aws:ec2:Subnet migration-vpc-public-0 deleting completing deletion from previous update
refined-teacher-35628
08/17/2020, 5:45 PMpulumi refreh
, pulumi stack export|import
but no luckbillions-morning-42067
08/17/2020, 5:54 PMbillions-truck-90982
08/17/2020, 6:15 PMbillions-truck-90982
08/17/2020, 6:18 PMbitter-application-91815
08/17/2020, 7:10 PMbitter-application-91815
08/17/2020, 7:10 PMbitter-application-91815
08/17/2020, 7:11 PMastonishing-quill-88807
08/17/2020, 8:05 PMfull-dress-10026
08/17/2020, 10:22 PMexport interface UserMapping {
/**
* The ARN of the IAM user to add.
*/
userArn: pulumi.Input<aws.ARN>;
/**
* The user name within Kubernetes to map to the IAM user. By default, the user name is the ARN of the IAM user.
*/
username: pulumi.Input<string>;
/**
* A list of groups within Kubernetes to which the user is mapped to.
*/
groups: pulumi.Input<pulumi.Input<string>[]>;
}
Both userArn and username are required yet the docstring for username seems to indicate is filled in by default. Should username actually be optional?careful-engine-71229
08/18/2020, 3:46 AMError: providerCredentialOpts and AWS_PROFILE must be set together
?miniature-leather-70472
08/18/2020, 12:20 PMvar aciPrincipalId =
Output.Tuple(args.ResourceGroupName, args.AksClusterName)
.Apply(aciIdentity => Pulumi.Azure.Authorization.GetUserAssignedIdentity.InvokeAsync(new Pulumi.Azure.Authorization.GetUserAssignedIdentityArgs
{
Name = $"aciconnectorlinux-{aciIdentity.Item2}",
ResourceGroupName = $"{aciIdentity.Item1}-NODES"
}))
.Apply(mi => mi.PrincipalId);
I have tried adding the AKS ID as a property of the Tuple as well, but it makes no difference.swift-rose-43128
08/18/2020, 12:40 PMwet-egg-6347
08/18/2020, 1:41 PMpulumi/postgresql
, is there some way to run the equivalent of the following?
REVOKE CREATE ON SCHEMA public FROM PUBLIC;
millions-furniture-75402
08/18/2020, 2:07 PMloud-battery-37784
08/18/2020, 4:50 PMset
looking for more input which I assume is due to some characters not being escaped.bitter-application-91815
08/18/2020, 6:42 PMalert-raincoat-81485
08/18/2020, 6:59 PMbitter-application-91815
08/18/2020, 7:00 PMbitter-application-91815
08/18/2020, 7:04 PMchilly-rainbow-79265
08/19/2020, 3:59 AMchilly-rainbow-79265
08/19/2020, 3:59 AMchilly-rainbow-79265
08/19/2020, 4:01 AMazure:location
and othersalert-raincoat-81485
08/19/2020, 4:55 AMclass ec2instance():
def __init__(self, instance_name, instancetype, sg_name, counts):
self.instance_name = instance_name
self.instancetype = instancetype
self.sg_name = sg_name
self.counts = counts
def count(self):
for inst in range(0, self.counts):
Instances = aws.ec2.Instance(self.instance_name + str(inst),
ami="ami-12345",
instance_type= self.instancetype,
subnet_id=sbnet,
#userData: `#!/bin/bash
# echo "Splunk Hybrid cloud poc" > index.html
)
if __name__ == "__main__":
searchhead = ec2instance("sh", size, secgrp, 2)
searchhead.count()
idx = ec2instance("idx", size, secgrp, 3)
idx.count()
alert-raincoat-81485
08/19/2020, 4:56 AMchilly-rainbow-79265
08/19/2020, 6:59 AMβ΅ dev-kube-cluster-new (dev) in projects/pulumi/demo
β― tree
.
βββ dev
βΒ Β βββ go.mod
βΒ Β βββ go.sum
βΒ Β βββ main.go
βΒ Β βββ webserver.go
βββ Pulumi.dev.yaml
βββ Pulumi.staging.yaml
βββ Pulumi.yaml
βββ staging
βββ main.go
βββ webserver.go
2 directories, 9 files
β΅ dev-kube-cluster-new (dev) in projects/pulumi/demo
β― cd staging
β΅ dev-kube-cluster-new (dev) in pulumi/demo/staging via πΉ v1.14.6
β― pu preview
Previewing update (staging):
Type Name Plan Info
pulumi:pulumi:Stack demo_proj-staging 1 error
Diagnostics:
pulumi:pulumi:Stack (demo_proj-staging):
error: Failed to find go files for 'go run' matching /home/rajeshr/Documents/projects/pulumi/demo/*.go
β΅ dev-kube-cluster-new (dev) in pulumi/demo/staging via πΉ v1.14.6 took 4s
β― pu stack ls
NAME LAST UPDATE RESOURCE COUNT URL
dev 1 hour ago 4 <https://app.pulumi.com/rjshrjndrn/demo_proj/dev>
staging* n/a n/a <https://app.pulumi.com/rjshrjndrn/demo_proj/staging>
β΅ dev-kube-cluster-new (dev) in pulumi/demo/staging via πΉ v1.14.6 took 2s
β― cat ../Pulumi.staging.yaml
config:
azure:location: centralindia
β΅ dev-kube-cluster-new (dev) in pulumi/demo/staging via πΉ v1.14.6
β― cat ../Pulumi.dev.yaml
config:
azure:environment: public
azure:location: centralindia
here my project is demo_projsticky-receptionist-53934
08/19/2020, 8:44 AMsticky-receptionist-53934
08/19/2020, 8:44 AMbroad-dog-22463
08/19/2020, 10:25 AMcool-egg-852
08/19/2020, 4:22 PMbroad-dog-22463
08/19/2020, 6:05 PMserviceAccount -> serviceaccount
NodeJS serviceAccount -> serviceaccount
Python service_account -> serviceaccount
This was an unintended consequence of the codegen change being released and is something that we should have ensured happened in a controlled manner rather than forcing the breakage on the customer
We are going to have a followup post-mortem event to ensure we learn from this and
that we add better quality bars to our releases so that we don't release these breaking changes without any warning or notice. We will publish the results of this post-mortem to make sure our customers understand what we have learned from this
I am sorry for this issue. If this issue will cause you any unnecessary replacement of any infrastructure, then please do let us know and we can work with you on making sure this
isn't the case
Paulsticky-receptionist-53934
08/22/2020, 4:34 PMbroad-dog-22463
08/22/2020, 5:39 PM