Skip to content

Commit f64bcd7

Browse files
committed
Fix pre-commit
1 parent 20ee31d commit f64bcd7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

github_action.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module "lamda_gha" {
1111

1212
count = var.create_github_actions_role ? 1 : 0
1313

14-
openid_connect_provider_arn = create_github_actions_oidc_provider ? module.oidc_provider.openid_connect_provider.arn : data.aws_iam_openid_connect_provider.github.arn
14+
openid_connect_provider_arn = var.create_github_actions_oidc_provider ? module.oidc_provider.openid_connect_provider.arn : data.aws_iam_openid_connect_provider.github.arn
1515
repo = var.github_repo.repo
1616
role_name = var.github_repo.role_name
1717
github_environments = var.github_repo.environments

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module "lambda" {
1313

1414
function_name = var.function_name
1515
description = var.description
16-
lambda_role = var.labmda_role
16+
lambda_role = var.lambda_role
1717

1818
create_package = false
1919

0 commit comments

Comments
 (0)