Skip to content
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

Default booleans in AWS role resource #222

Merged
merged 1 commit into from
Oct 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions vault/resource_aws_auth_backend_role.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func awsAuthBackendRoleResource() *schema.Resource {
Type: schema.TypeBool,
Optional: true,
Description: "Whether or not Vault should resolve the bound_iam_principal_arn to an AWS Unique ID. When true, deleting a principal and recreating it with the same name won't automatically grant the new principal the same roles in Vault that the old principal had.",
Computed: true,
Default: true,
},
"ttl": {
Type: schema.TypeInt,
Expand Down Expand Up @@ -235,12 +235,13 @@ func awsAuthBackendRoleResource() *schema.Resource {
Type: schema.TypeBool,
Optional: true,
Description: "When true, allows migration of the underlying instance where the client resides. Use with caution.",
Computed: true,
Default: false,
},
"disallow_reauthentication": {
Type: schema.TypeBool,
Optional: true,
Description: "When true, only allows a single token to be granted per instance ID.",
Default: false,
},
"backend": {
Type: schema.TypeString,
Expand Down