diff --git a/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf b/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf index eba65c19c0..d6306a01d8 100644 --- a/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf +++ b/terraform-aws-github-runner/modules/runner-binaries-syncer/outputs.tf @@ -17,3 +17,7 @@ output "lambda" { output "lambda_role" { value = aws_iam_role.syncer_lambda } + +output "distribution_bucket_name" { + value = aws_s3_bucket.action_dist.bucket +} diff --git a/terraform-aws-github-runner/outputs.tf b/terraform-aws-github-runner/outputs.tf index 55c3b64ffa..594a823809 100644 --- a/terraform-aws-github-runner/outputs.tf +++ b/terraform-aws-github-runner/outputs.tf @@ -33,3 +33,7 @@ output "webhook" { endpoint = "${module.webhook.gateway.api_endpoint}/${module.webhook.endpoint_relative_path}" } } + +output "distribution_bucket_name" { + value = module.runner_binaries.distribution_bucket_name +}