Skip to content

Commit

Permalink
correct registry path
Browse files Browse the repository at this point in the history
  • Loading branch information
Plork committed Sep 16, 2024
1 parent 22bd1a1 commit 9dd8c4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ locals {
module "lambda_role" {
count = length(compact([var.role_arn])) == 0 ? 1 : 0

source = "github.com/schubergphilis/terraform-aws-mcaf-role?ref=v0.4.0"
source = "schubergphilis/mcaf-role/aws"
version = "~> 0.4.0"

name = join("-", compact([var.role_prefix, "LambdaRole", var.name]))
create_policy = var.create_policy
permissions_boundary = var.permissions_boundary
Expand Down

0 comments on commit 9dd8c4b

Please sign in to comment.