-
Notifications
You must be signed in to change notification settings - Fork 554
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
Allow description
to be updated for vault_auth_backend
resource
#1439
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.
A few minor nits to address, then 👍
vault/resource_auth_backend_test.go
Outdated
} | ||
|
||
` | ||
//var testResourceAuth_updateConfig = ` |
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.
Vestigial?
vault/auth_mount.go
Outdated
@@ -88,7 +88,11 @@ func authMountInfoGet(client *api.Client, path string) (*api.AuthMount, error) { | |||
func authMountTune(client *api.Client, path string, configured interface{}) error { | |||
tune := expandAuthMethodTune(configured.(*schema.Set).List()) |
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.
nit: may want to rename to input
to be consistent with tuneMount()
below.
return tuneMount(client, path, tune) | ||
} | ||
|
||
func tuneMount(client *api.Client, path string, input api.MountConfigInput) error { |
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.
👍
Relates OR Closes #1430
Output from acceptance testing: