-
Notifications
You must be signed in to change notification settings - Fork 878
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
Output-ify JSON use in CreateRoleStack #1325
base: master
Are you sure you want to change the base?
Conversation
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.
Anything keeping us from merging this?
Given that it looks like all the AWS tests failed, it seems like we should maybe re-run the tests before merging? |
I haven't checked this actually works... |
bb7ed81
to
78aabbb
Compare
🍹 The Update for pulumi/k8s-ci-cluster/464eeb0eb3a87fcb5addda16a1dcd951266e8cd5-508 was successful. Resource Changes Name Type Operation
+ 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
+ gke pulumi:providers:kubernetes create
+ k8s-ci-cluster-464eeb0eb3a87fcb5addda16a1dcd951266e8cd5-508 pulumi:pulumi:Stack create
|
🍹 The Destroy for pulumi/k8s-ci-cluster/464eeb0eb3a87fcb5addda16a1dcd951266e8cd5-508 was successful. Resource Changes Name Type Operation
- ephemeral-ci-cluster gcp:container/cluster:Cluster delete
- multicloud pulumi-kubernetes:ci:GkeCluster delete
- password random:index/randomPassword:RandomPassword delete
- k8s-ci-cluster-464eeb0eb3a87fcb5addda16a1dcd951266e8cd5-508 pulumi:pulumi:Stack delete
- gke pulumi:providers:kubernetes delete
- primary-node-pool gcp:container/nodePool:NodePool delete
|
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.
It looks like with one change it will build
return JsonSerializer.Serialize<AssumeRolePolicyArgs>(policyArgs); | ||
}); | ||
AssumeRolePolicyArgs policyArgs = new AssumeRolePolicyArgs(unprivilegedUser.Arn); | ||
var tempPolicy = Output.JsonSerialize<AssumeRolePolicyArgs>(policyArgs); |
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.
var tempPolicy = Output.JsonSerialize<AssumeRolePolicyArgs>(policyArgs); | |
var tempPolicy = Output.Create(policyArgs).Apply(args => JsonSerializer.Serialize(args)); |
No description provided.