Skip to content

Commit

Permalink
syntax fix for new aws role var
Browse files Browse the repository at this point in the history
  • Loading branch information
kentikethan committed Apr 18, 2024
1 parent e7818b7 commit 9647189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud_AWS/terraform/module/cloudexport.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "kentik-cloudexport_item" "aws_export" {
for bucketobject in aws_s3_bucket.vpc_logs :
(var.s3_flowlogs_path == "" ? bucketobject.bucket : "${bucketobject.bucket}/${var.s3_flowlogs_path}")
])
iam_role_arn = var.create_role ? aws_iam_role.kentik_role[0].arn : aws_iam_role_no_create
iam_role_arn = var.create_role ? aws_iam_role.kentik_role[0].arn : var.aws_iam_role_no_create
region = var.region
delete_after_read = var.delete_after_read
multiple_buckets = var.multiple_buckets
Expand Down

0 comments on commit 9647189

Please sign in to comment.