Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 74 additions & 75 deletions .github/workflows/deploy-sandbox.yml
Original file line number Diff line number Diff line change
@@ -1,82 +1,81 @@
name: Deploy Sandbox Environment

on:
pull_request:
branches: [ "**" ]
pull_request:
branches: [ "**" ]

permissions:
id-token: write
contents: read
id-token: write
contents: read

jobs:
build-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.build-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
- name: Build Environment Matrix
id: build-matrix
shell: python
env:
PLATFORM_ENVIRONMENT: "sandbox"
run: |
from pathlib import Path
import os
import json

def discover_environments(platform_path: Path = Path("platform")) -> list[Path]:
return [d for d in platform_path.iterdir() if d.is_dir()]

def discover_regions(environment_path: Path) -> list[Path]:
return [d for d in environment_path.iterdir() if d.is_dir()]

def discover_instances(region_path: Path) -> list[Path]:
return [d for d in region_path.iterdir() if d.is_dir()]

try:
ENVIRONMENT = os.environ['PLATFORM_ENVIRONMENT']
except KeyError as ke:
raise ValueError("Environment variable named PLATFORM_ENVIRONMENT was not found. This variable must be supplied so that a matrix of environments can be built!")

if len(ENVIRONMENT) == 0:
raise ValueError("Environment variable PLATFORM_ENVIRONMENT was empty. This variable must be supplied so that a matrix of environments can be built!")

all_environments = discover_environments()
matrix = {"terragrunt_environment": []}
try:
selected_environment = list(filter(lambda x: x.name == ENVIRONMENT, all_environments))[0]
except Exception:
raise ValueError(f"Expected environment '{ENVIRONMENT}' not found in {all_environments}")

regions = discover_regions(environment_path=selected_environment)

for region_path in regions:
region_instances = discover_instances(region_path=region_path)
for instance in region_instances:
matrix["terragrunt_environment"].append({"environment": selected_environment.name, "region": region_path.name, "instance": instance.name})

print("Generated the following environment matrix:")
print(json.dumps(matrix, indent=4))

with open(os.environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"matrix={json.dumps(matrix, separators=(',', ':'))}")

call-terragrunt-deploy:
needs: build-matrix
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}

uses: ./.github/workflows/terragrunt-deploy.yml
with:
tf_version: '1.5.5'
tg_version: '0.54.11'
environment: ${{ matrix.terragrunt_environment.environment }}
region: ${{ matrix.terragrunt_environment.region }}
env_id: ${{ matrix.terragrunt_environment.instance }}

secrets: inherit
build-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.build-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
- name: Build Environment Matrix
id: build-matrix
shell: python
env:
PLATFORM_ENVIRONMENT: "sandbox"
run: |
from pathlib import Path
import os
import json

def discover_environments(platform_path: Path = Path("platform")) -> list[Path]:
return [d for d in platform_path.iterdir() if d.is_dir()]

def discover_regions(environment_path: Path) -> list[Path]:
return [d for d in environment_path.iterdir() if d.is_dir()]

def discover_instances(region_path: Path) -> list[Path]:
return [d for d in region_path.iterdir() if d.is_dir()]

try:
ENVIRONMENT = os.environ['PLATFORM_ENVIRONMENT']
except KeyError as ke:
raise ValueError("Environment variable named PLATFORM_ENVIRONMENT was not found. This variable must be supplied so that a matrix of environments can be built!")

if len(ENVIRONMENT) == 0:
raise ValueError("Environment variable PLATFORM_ENVIRONMENT was empty. This variable must be supplied so that a matrix of environments can be built!")

all_environments = discover_environments()
matrix = {"terragrunt_environment": []}
try:
selected_environment = list(filter(lambda x: x.name == ENVIRONMENT, all_environments))[0]
except Exception:
raise ValueError(f"Expected environment '{ENVIRONMENT}' not found in {all_environments}")

regions = discover_regions(environment_path=selected_environment)

for region_path in regions:
region_instances = discover_instances(region_path=region_path)
for instance in region_instances:
matrix["terragrunt_environment"].append({"environment": selected_environment.name, "region": region_path.name, "instance": instance.name})

print("Generated the following environment matrix:")
print(json.dumps(matrix, indent=4))

with open(os.environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"matrix={json.dumps(matrix, separators=(',', ':'))}")

call-terragrunt-deploy:
needs: build-matrix
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}

uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-deploy.yml@v0.1.0
with:
tf_version: '1.5.5'
tg_version: '0.54.11'
environment: ${{ matrix.terragrunt_environment.environment }}
region: ${{ matrix.terragrunt_environment.region }}
env_id: ${{ matrix.terragrunt_environment.instance }}
secrets: inherit
1 change: 0 additions & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5
with:
commitish: main
disable-autolabeler: true
latest: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
150 changes: 75 additions & 75 deletions .github/workflows/release-published.yml
Original file line number Diff line number Diff line change
@@ -1,83 +1,83 @@
on:
release:
types:
- published
release:
types:
- published

name: Deploy to Production

permissions:
contents: read
contents: read


jobs:
build-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.build-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
- name: Build Environment Matrix
id: build-matrix
shell: python
env:
PLATFORM_ENVIRONMENT: "production"
run: |
from pathlib import Path
import os
import json

def discover_environments(platform_path: Path = Path("platform")) -> list[Path]:
return [d for d in platform_path.iterdir() if d.is_dir()]

def discover_regions(environment_path: Path) -> list[Path]:
return [d for d in environment_path.iterdir() if d.is_dir()]

def discover_instances(region_path: Path) -> list[Path]:
return [d for d in region_path.iterdir() if d.is_dir()]

try:
ENVIRONMENT = os.environ['PLATFORM_ENVIRONMENT']
except KeyError as ke:
raise ValueError("Environment variable named PLATFORM_ENVIRONMENT was not found. This variable must be supplied so that a matrix of environments can be built!")

if len(ENVIRONMENT) == 0:
raise ValueError("Environment variable PLATFORM_ENVIRONMENT was empty. This variable must be supplied so that a matrix of environments can be built!")

all_environments = discover_environments()
matrix = {"terragrunt_environment": []}
try:
selected_environment = list(filter(lambda x: x.name == ENVIRONMENT, all_environments))[0]
except Exception:
raise ValueError(f"Expected environment '{ENVIRONMENT}' not found in {all_environments}")

regions = discover_regions(environment_path=selected_environment)

for region_path in regions:
region_instances = discover_instances(region_path=region_path)
for instance in region_instances:
matrix["terragrunt_environment"].append({"environment": selected_environment.name, "region": region_path.name, "instance": instance.name})

print("Generated the following environment matrix:")
print(json.dumps(matrix, indent=4))

with open(os.environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"matrix={json.dumps(matrix, separators=(',', ':'))}")

call-terragrunt-deploy:
needs: build-matrix
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}

uses: ./.github/workflows/terragrunt-deploy.yml
with:
tf_version: '1.5.5'
tg_version: '0.54.11'
environment: ${{ matrix.terragrunt_environment.environment }}
region: ${{ matrix.terragrunt_environment.region }}
env_id: ${{ matrix.terragrunt_environment.instance }}

secrets: inherit
build-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.build-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
- name: Build Environment Matrix
id: build-matrix
shell: python
env:
PLATFORM_ENVIRONMENT: "production"
run: |
from pathlib import Path
import os
import json

def discover_environments(platform_path: Path = Path("platform")) -> list[Path]:
return [d for d in platform_path.iterdir() if d.is_dir()]

def discover_regions(environment_path: Path) -> list[Path]:
return [d for d in environment_path.iterdir() if d.is_dir()]

def discover_instances(region_path: Path) -> list[Path]:
return [d for d in region_path.iterdir() if d.is_dir()]

try:
ENVIRONMENT = os.environ['PLATFORM_ENVIRONMENT']
except KeyError as ke:
raise ValueError("Environment variable named PLATFORM_ENVIRONMENT was not found. This variable must be supplied so that a matrix of environments can be built!")

if len(ENVIRONMENT) == 0:
raise ValueError("Environment variable PLATFORM_ENVIRONMENT was empty. This variable must be supplied so that a matrix of environments can be built!")

all_environments = discover_environments()
matrix = {"terragrunt_environment": []}
try:
selected_environment = list(filter(lambda x: x.name == ENVIRONMENT, all_environments))[0]
except Exception:
raise ValueError(f"Expected environment '{ENVIRONMENT}' not found in {all_environments}")

regions = discover_regions(environment_path=selected_environment)

for region_path in regions:
region_instances = discover_instances(region_path=region_path)
for instance in region_instances:
matrix["terragrunt_environment"].append({"environment": selected_environment.name, "region": region_path.name, "instance": instance.name})

print("Generated the following environment matrix:")
print(json.dumps(matrix, indent=4))

with open(os.environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"matrix={json.dumps(matrix, separators=(',', ':'))}")

call-terragrunt-deploy:
needs: build-matrix
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}

uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-deploy.yml@v0.1.0
with:
tf_version: '1.5.5'
tg_version: '0.54.11'
environment: ${{ matrix.terragrunt_environment.environment }}
region: ${{ matrix.terragrunt_environment.region }}
env_id: ${{ matrix.terragrunt_environment.instance }}

secrets: inherit
Loading
Loading