From 4fd14735f18709ed51de07b5c78dc37cce8dcc52 Mon Sep 17 00:00:00 2001 From: edersonbrilhante Date: Mon, 30 Mar 2026 19:55:57 +0200 Subject: [PATCH] feat: add support to mac using upstream tag --- README.md | 2 +- .../regions/eu-west-1/splunk_o11y_aws_integration/config.yaml | 2 +- .../eu-west-1/splunk_o11y_regional_integration/config.hcl | 2 +- .../splunk/_environment_wide_settings/_environment.yaml | 2 +- .../templates/splunk/splunk_o11y_aws_integration/config.yaml | 2 +- modules/platform/ec2_deployment/main.tf | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 45c8c5f0..47d6b61d 100644 --- a/README.md +++ b/README.md @@ -147,7 +147,7 @@ jobs: permissions: id-token: write # Required for OIDC steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4 diff --git a/examples/deployments/splunk-deployment/terragrunt/environments/prod/regions/eu-west-1/splunk_o11y_aws_integration/config.yaml b/examples/deployments/splunk-deployment/terragrunt/environments/prod/regions/eu-west-1/splunk_o11y_aws_integration/config.yaml index 8662ca42..0c39d3ab 100644 --- a/examples/deployments/splunk-deployment/terragrunt/environments/prod/regions/eu-west-1/splunk_o11y_aws_integration/config.yaml +++ b/examples/deployments/splunk-deployment/terragrunt/environments/prod/regions/eu-west-1/splunk_o11y_aws_integration/config.yaml @@ -1,3 +1,3 @@ --- splunk_ingest_url: https://ingest.us0.signalfx.com -template_url: https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_all_features_regional.yaml +template_url: https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_metric_streams_regional.yaml diff --git a/examples/infra-forge/terragrunt/environments/dev/regions/eu-west-1/splunk_o11y_regional_integration/config.hcl b/examples/infra-forge/terragrunt/environments/dev/regions/eu-west-1/splunk_o11y_regional_integration/config.hcl index 28a8fe01..ac90000f 100644 --- a/examples/infra-forge/terragrunt/environments/dev/regions/eu-west-1/splunk_o11y_regional_integration/config.hcl +++ b/examples/infra-forge/terragrunt/environments/dev/regions/eu-west-1/splunk_o11y_regional_integration/config.hcl @@ -1,4 +1,4 @@ locals { splunk_ingest_url = "https://ingest..signalfx.com" - template_url = "https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_all_features_regional.yaml" + template_url = "https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_metric_streams_regional.yaml" } diff --git a/examples/templates/splunk/_environment_wide_settings/_environment.yaml b/examples/templates/splunk/_environment_wide_settings/_environment.yaml index 45ccada2..990bb542 100644 --- a/examples/templates/splunk/_environment_wide_settings/_environment.yaml +++ b/examples/templates/splunk/_environment_wide_settings/_environment.yaml @@ -6,5 +6,5 @@ splunk: splunk_api_url: # e.g., "https://api.us0.signalfx.com" splunk_ingest_url: # e.g., "https://ingest.us0.signalfx.com" splunk_organization_id: # e.g., "ORG1234567890" - data_manager_template_url: # e.g., "https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_all_features_regional.yaml" + data_manager_template_url: # e.g., "https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_metric_streams_regional.yaml" splunk_cloud: # e.g., "https://mycompany.splunkcloud.com" diff --git a/examples/templates/splunk/splunk_o11y_aws_integration/config.yaml b/examples/templates/splunk/splunk_o11y_aws_integration/config.yaml index 7621a381..053a2d77 100644 --- a/examples/templates/splunk/splunk_o11y_aws_integration/config.yaml +++ b/examples/templates/splunk/splunk_o11y_aws_integration/config.yaml @@ -1,3 +1,3 @@ --- splunk_ingest_url: # e.g., https://ingest.us0.signalfx.com -template_url: # e.g., https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_all_features_regional.yaml +template_url: # e.g., https://o11y-public.s3.amazonaws.com/aws-cloudformation-templates/release/template_metric_streams_regional.yaml diff --git a/modules/platform/ec2_deployment/main.tf b/modules/platform/ec2_deployment/main.tf index 7fcc9240..4bf15042 100644 --- a/modules/platform/ec2_deployment/main.tf +++ b/modules/platform/ec2_deployment/main.tf @@ -34,12 +34,12 @@ data "aws_subnet" "runner_subnet" { } data "external" "download_lambdas" { - program = ["bash", "${path.module}/scripts/download_lambdas.sh", "/tmp/${var.runner_configs.prefix}/", "v7.5.0"] + program = ["bash", "${path.module}/scripts/download_lambdas.sh", "/tmp/${var.runner_configs.prefix}/", "v7.6.0"] } module "runners" { - source = "git::https://github.com/edersonbrilhante/terraform-aws-github-runner.git//modules/multi-runner?ref=feat-macos-support" + source = "git::https://github.com/edersonbrilhante/terraform-aws-github-runner.git//modules/multi-runner?ref=v7.6.0" aws_region = var.aws_region