Skip to content

Commit

Permalink
validating: true
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Arnold committed Sep 18, 2024
1 parent 9a4e7b4 commit 4bf6cff
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ resource "aws_ecs_cluster" "github-runner" {
name = var.ecs_cluster_name
}

data "aws_caller_identity" "current" {}
data "aws_region" "current" {}


data "aws_region" "current" {}
resource "aws_cloudwatch_log_group" "function_log_group" {
name = "/ecs-ghe-runners/${terraform.workspace}-${data.aws_caller_identity.current.account_id}-${data.aws_region.current.name}"
retention_in_days = 90
}

resource "aws_vpc_endpoint" "ecr" {
for_each = var.create_vpc_endpoint ? toset([
Expand Down

0 comments on commit 4bf6cff

Please sign in to comment.