Skip to content

Commit d4eb12e

Browse files
committed
Small README fix
1 parent c81b2e0 commit d4eb12e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ No modules.
169169
| Name | Description | Type | Default | Required |
170170
|------|-------------|------|---------|:--------:|
171171
| <a name="input_github_actions_oidc_url"></a> [github\_actions\_oidc\_url](#input\_github\_actions\_oidc\_url) | The URL to use for the OIDC handshake | `string` | `"https://token.actions.githubusercontent.com"` | no |
172-
| <a name="input_github_repositories"></a> [github\_repositories](#input\_github\_repositories) | A list of GitHub repositories the OIDC provider should authenticate against. The format is <org/user>/<repository-name> | `set(string)` | `[]` | no |
172+
| <a name="input_github_repositories"></a> [github\_repositories](#input\_github\_repositories) | A list of GitHub repositories the OIDC provider should authenticate against. The format is org/user/repository-name | `set(string)` | `[]` | no |
173173
| <a name="input_role_names"></a> [role\_names](#input\_role\_names) | The set of names for roles that GitHub Actions will be able to assume | `set(string)` | `[]` | no |
174174
| <a name="input_role_path"></a> [role\_path](#input\_role\_path) | The path the created roles are going to live under | `string` | `"/"` | no |
175175
| <a name="input_tags"></a> [tags](#input\_tags) | A key > value map of tags to associate with the resources that are being created | `map(string)` | `{}` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ variable "github_actions_oidc_url" {
1111

1212
variable "github_repositories" {
1313
type = set(string)
14-
description = "A list of GitHub repositories the OIDC provider should authenticate against. The format is <org/user>/<repository-name>"
14+
description = "A list of GitHub repositories the OIDC provider should authenticate against. The format is org/user/repository-name"
1515
default = []
1616

1717
validation {
1818
condition = alltrue([for repo in var.github_repositories : substr(repo, 0, 4) != "http"])
19-
error_message = "The repositories must not have a http(s):// prefix. The format is <org/user>/<repository-name>."
19+
error_message = "The repositories must not have a http(s):// prefix. The format is org/user/repository-name."
2020
}
2121
}
2222

0 commit comments

Comments
 (0)