Skip to content

Commit

Permalink
fix other types too
Browse files Browse the repository at this point in the history
  • Loading branch information
niroz89 committed Jan 23, 2024
1 parent f5e0ec4 commit 770400a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ No modules.
|------|-------------|------|---------|:--------:|
| <a name="input_auth_description"></a> [auth\_description](#input\_auth\_description) | Description of the JWT Auth Backend | `string` | `"Terraform Cloud"` | no |
| <a name="input_auth_token_issuer"></a> [auth\_token\_issuer](#input\_auth\_token\_issuer) | Token issuer of JWT token | `string` | `"https://app.terraform.io"` | no |
| <a name="input_auth_tune"></a> [auth\_tune](#input\_auth\_tune) | Auth mount tune settings | <pre>object({<br> default_lease_ttl = optional(string)<br> max_lease_ttl = optional(string)<br> audit_non_hmac_response_keys = optional(list(string))<br> audit_non_hmac_request_keys = optional(list(string))<br> listing_visibility = optional(string)<br> passthrough_request_headers = optional(string)<br> allowed_response_headers = optional(string)<br> token_type = optional(string)<br> })</pre> | `null` | no |
| <a name="input_auth_tune"></a> [auth\_tune](#input\_auth\_tune) | Auth mount tune settings | <pre>object({<br> default_lease_ttl = optional(string)<br> max_lease_ttl = optional(string)<br> audit_non_hmac_response_keys = optional(list(string))<br> audit_non_hmac_request_keys = optional(list(string))<br> listing_visibility = optional(string)<br> passthrough_request_headers = optional(list(string))<br> allowed_response_headers = optional(list(string))<br> token_type = optional(string)<br> })</pre> | `null` | no |
| <a name="input_bound_audiences"></a> [bound\_audiences](#input\_bound\_audiences) | List of audiences to be allowed for JWT auth roles | `list(string)` | <pre>[<br> "tfc.workload.identity"<br>]</pre> | no |
| <a name="input_claim_mappings"></a> [claim\_mappings](#input\_claim\_mappings) | Mapping of claims to metadata | `map(string)` | <pre>{<br> "terraform_full_workspace": "terraform_full_workspace",<br> "terraform_organization_id": "terraform_organization_id",<br> "terraform_organization_name": "terraform_organization_name",<br> "terraform_run_id": "terraform_run_id",<br> "terraform_run_phase": "terraform_run_phase",<br> "terraform_workspace_id": "terraform_workspace_id"<br>}</pre> | no |
| <a name="input_enable_identity_management"></a> [enable\_identity\_management](#input\_enable\_identity\_management) | Enable Identity Entity management. This only works if workspace names contains no wildcard | `bool` | `true` | no |
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ variable "auth_tune" {
audit_non_hmac_response_keys = optional(list(string))
audit_non_hmac_request_keys = optional(list(string))
listing_visibility = optional(string)
passthrough_request_headers = optional(string)
allowed_response_headers = optional(string)
passthrough_request_headers = optional(list(string))
allowed_response_headers = optional(list(string))
token_type = optional(string)
})
default = null
Expand Down

0 comments on commit 770400a

Please sign in to comment.