Skip to content

Commit

Permalink
Fix a typo in the description for the var.external_id.
Browse files Browse the repository at this point in the history
  • Loading branch information
rquadling committed Feb 22, 2024
1 parent e5fc992 commit b97cfde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

# Unreleased - 2024/02/22
- Fix a typo in the description for the `var.external_id`.

# v6.1.0 - 2024/01/31
- Added testing for Terraform 1.7+
- FIX : If `var.profile` and `var.assume_role_arn` are used, then continuing to use `var.profile` invalidates the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ No modules.
| <a name="input_assume_role_arn"></a> [assume\_role\_arn](#input\_assume\_role\_arn) | The ARN of the role being assumed (optional).<br><br> The optional ARN must match the format documented in https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html. | `string` | `""` | no |
| <a name="input_aws_cli_commands"></a> [aws\_cli\_commands](#input\_aws\_cli\_commands) | The AWS CLI command, subcommands, and options.<br><br> For options that can accept a value, then the following examples are both fine to use:<br> 1. `"--option", "value"`<br> 2. `"--option=value"`<br><br> In the event that the value contains a space, it must be wrapped with quotes.<br> 1. `"--option", "'value with a space wrapped in single quotes'"`<br> 2. `"--option='value with a space wrapped in single quotes'"` | `list(string)` | n/a | yes |
| <a name="input_aws_cli_query"></a> [aws\_cli\_query](#input\_aws\_cli\_query) | The `--query` value for the AWS CLI call.<br><br> The value for `var.aws_cli_query` is based upon JMESPath, and you can get good information from https://jmespath.org.<br> If not supplied, then the entire results from the AWS CLI call will be returned. | `string` | `""` | no |
| <a name="input_external_id"></a> [external\_id](#input\_external\_id) | External id for assuming the role (optional).<br><br> The length of optional external\_id, when supplied, must be between 2 and 1224 characters.<br> The optional external\_id can only contain upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: `=,.@-`.<br> The optional external\_id match the regular expression `^[\w=php]*$`. | `string` | `""` | no |
| <a name="input_external_id"></a> [external\_id](#input\_external\_id) | External id for assuming the role (optional).<br><br> The length of optional external\_id, when supplied, must be between 2 and 1224 characters.<br> The optional external\_id can only contain upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: `=,.@-`.<br> The optional external\_id match the regular expression `^[\w=,.@-]*$`. | `string` | `""` | no |
| <a name="input_profile"></a> [profile](#input\_profile) | The specific AWS profile to use (must be configured appropriately and is optional).<br><br> The optional profile must start with a letter and can only contain letters, numbers, hyphens, and underscores. | `string` | `""` | no |
| <a name="input_region"></a> [region](#input\_region) | The specific AWS region to use.<br><br> The region must start with two letters representing the geographical area, followed by one or more letters or digits representing the specific region within that area. | `string` | `""` | no |
| <a name="input_role_session_name"></a> [role\_session\_name](#input\_role\_session\_name) | The role session name that will be used when assuming a role (optional)<br><br> The length of the optional role session name, when supplied, must be between 2 and 64 characters.<br> The optional role session name can only contain upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: `=,.@-`.<br> The optional role session name match the regular expression `^[\w=,.@-]*$`.<br><br> If the assume\_role\_arn is supplied, but the role\_session\_name is left empty, an internal default of "AssumingRole" will be used. | `string` | `""` | no |
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ variable "external_id" {
The length of optional external_id, when supplied, must be between 2 and 1224 characters.
The optional external_id can only contain upper- and lower-case alphanumeric characters with no spaces. You can also include underscores or any of the following characters: `=,.@-`.
The optional external_id match the regular expression `^[\w=php]*$`.
The optional external_id match the regular expression `^[\w=,.@-]*$`.
EOD
type = string
default = ""
Expand Down

0 comments on commit b97cfde

Please sign in to comment.