-
Notifications
You must be signed in to change notification settings - Fork 556
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
Add fields to vault_gcp_auth_backend_role
#308
Add fields to vault_gcp_auth_backend_role
#308
Conversation
- `add_group_aliases` - `max_jwt_exp` - `allow_gce_inference`
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.
@lawliet89 thank you! Looks good, just one minor thing.
@@ -208,7 +209,8 @@ resource "vault_gcp_auth_backend_role" "test" { | |||
project_id = "%s" | |||
ttl = 300 | |||
max_ttl = 600 | |||
policies = ["policy_a", "policy_b"] | |||
policies = ["policy_a", "policy_b"] | |||
add_group_aliases = true |
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 you be willing to fix the alignment here?
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.
Will do. I just realised the entire file is tabbed with \t
but the fixture is with spaces...
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.
Done.
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.
@lawliet89 thank you!
Add fields to `vault_gcp_auth_backend_role`
add_group_aliases
max_jwt_exp
allow_gce_inference
Fixes #226