Skip to content

Commit

Permalink
fix: Update GitHub thumbprints for AWS OIDC (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
amontalban authored Jul 13, 2023
1 parent 416064f commit df95d7d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_thumbprint_list"></a> [thumbprint\_list](#input\_thumbprint\_list) | (Optional) A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s). | `list(string)` | <pre>[<br> "6938fd4d98bab03faadb97b34396831e3780aea1"<br>]</pre> | no |
| <a name="input_thumbprint_list"></a> [thumbprint\_list](#input\_thumbprint\_list) | (Optional) A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s). | `list(string)` | <pre>[<br> "6938fd4d98bab03faadb97b34396831e3780aea1",<br> "1c58a3a8518e8759bf075b76b750d4f2df264fcd"<br>]</pre> | no |

## Outputs

Expand Down
5 changes: 4 additions & 1 deletion modules/provider/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
variable "thumbprint_list" {
description = "(Optional) A list of server certificate thumbprints for the OpenID Connect (OIDC) identity provider's server certificate(s)."
type = list(string)
default = ["6938fd4d98bab03faadb97b34396831e3780aea1"]
default = [
"6938fd4d98bab03faadb97b34396831e3780aea1",
"1c58a3a8518e8759bf075b76b750d4f2df264fcd"
]
}

0 comments on commit df95d7d

Please sign in to comment.