-
Notifications
You must be signed in to change notification settings - Fork 880
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update aws-go-console-slack-notification to BucketV2 #1689
Update aws-go-console-slack-notification to BucketV2 #1689
Conversation
config := config.New(ctx, "") | ||
|
||
var regions []string | ||
config.GetObject("regions", ®ions) | ||
|
||
if len(regions) == 0 { | ||
var err error | ||
regions, err = getRegions() | ||
regions, err = getRegions(ctx) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using built-ins from Pulumi makes authentication story much easier, for example AWS_PROFILE just works.
🍹 The Update for pulumi/k8s-ci-cluster/1946c8eedc7dc6ecc51813ac16a20f96bebc6d81-190 was successful. Resource Changes Name Type Operation
+ gke pulumi:providers:kubernetes create
+ k8s-ci-cluster-1946c8eedc7dc6ecc51813ac16a20f96bebc6d81-190 pulumi:pulumi:Stack create
+ multicloud pulumi-kubernetes:ci:GkeCluster create
+ password random:index/randomPassword:RandomPassword create
+ ephemeral-ci-cluster gcp:container/cluster:Cluster create
+ primary-node-pool gcp:container/nodePool:NodePool create
|
🍹 The Destroy for pulumi/k8s-ci-cluster/1946c8eedc7dc6ecc51813ac16a20f96bebc6d81-190 was successful. Resource Changes Name Type Operation
- password random:index/randomPassword:RandomPassword delete
- k8s-ci-cluster-1946c8eedc7dc6ecc51813ac16a20f96bebc6d81-190 pulumi:pulumi:Stack delete
- gke pulumi:providers:kubernetes delete
- primary-node-pool gcp:container/nodePool:NodePool delete
- ephemeral-ci-cluster gcp:container/cluster:Cluster delete
- multicloud pulumi-kubernetes:ci:GkeCluster delete
|
Re: pulumi/home#3631