Skip to content

Commit 805940b

Browse files
committed
Updating default thumbprint and declaring some variable types
1 parent 501a4a4 commit 805940b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

variables.tf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ variable "url" {
88
}
99

1010
variable "client_id_list" {
11+
type = list(string)
1112
default = [
1213
"sts.amazonaws.com"
1314
]
@@ -16,8 +17,9 @@ variable "client_id_list" {
1617
# This is the thumbprint returned if you were to create an "identity provider" in AWS and gave
1718
# it this url: https://token.actions.githubusercontent.com
1819
variable "thumbprint_list" {
20+
type = list(string)
1921
default = [
20-
"a031c46782e6e6c662c2c87c76da9aa62ccabd8e"
22+
"6938fd4d98bab03faadb97b34396831e3780aea1"
2123
]
2224
}
2325

0 commit comments

Comments
 (0)