-
Notifications
You must be signed in to change notification settings - Fork 55
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
Static Credential Store #236
Conversation
…lemiu_add-static-cred-store
…credential store test
@@ -42,6 +42,7 @@ resource "boundary_scope" "proj1" { | |||
scope_id = boundary_scope.org1.id | |||
description = "foo" | |||
depends_on = [boundary_role.org1_admin] | |||
auto_create_admin_role = true // this is necessary for creating static credential store. without it, boundary returns a 403 on creation |
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.
Would be interested in hearing Louis' thoughts on this
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.
I think this has to do with not setting the depends_on
in the static resource, would be curious if that resolves it.
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.
I believe adding the depends_on
will remove the scope changes you added. Otherwise this looks perfect! Well done
…references to the former
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.
Lets ship it!
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.
LGTM
adds static credential store to the terraform boundary provider
including
testing details