We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9495c41 commit 4a25005Copy full SHA for 4a25005
main.tf
@@ -1,3 +1,12 @@
1
+resource "aws_iam_openid_connect_provider" "github_oidc_connect" {
2
+ url = "https://token.actions.githubusercontent.com"
3
+
4
+ client_id_list = [
5
+ "sts.amazonaws.com",
6
+ ]
7
8
+ thumbprint_list = ["ffffffffffffffffffffffffffffffffffffffff"]
9
+}
10
resource "aws_iam_role" "github_actions_role" {
11
name = var.role_name
12
assume_role_policy = data.aws_iam_policy_document.assume_role_policy.json
0 commit comments