Skip to content

Commit 53184ae

Browse files
authored
Merge pull request #9 from dougdaly/mlops-poc-terraform-github
move terraform into separate directory
2 parents d6e57ef + 62eaf24 commit 53184ae

21 files changed

Lines changed: 5 additions & 5 deletions

.github/workflows/terraform-apply.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'mlops/infra/terraform/**'
8+
- 'terraform/**'
99
- 'mlops/pipelines/**'
1010
- '.github/workflows/terraform-plan.yml'
1111
- '.github/workflows/terraform-apply.yml'
@@ -21,7 +21,7 @@ jobs:
2121

2222
env:
2323
AWS_REGION: us-west-2
24-
TF_WORKING_DIR: mlops/infra/terraform/envs/dev
24+
TF_WORKING_DIR: terraform/envs/dev
2525
PIPELINE_NAME: digital-twin-resilience-dev-pipeline
2626
PIPELINE_MODE: stub
2727
LLM_PROVIDER: openai

.github/workflows/terraform-plan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Terraform Plan
33
on:
44
pull_request:
55
paths:
6-
- 'mlops/infra/terraform/**'
6+
- 'terraform/**'
77
- 'mlops/pipelines/**'
88
- '.github/workflows/terraform-plan.yml'
99
- '.github/workflows/terraform-apply.yml'
@@ -19,7 +19,7 @@ jobs:
1919

2020
env:
2121
AWS_REGION: us-west-2
22-
TF_WORKING_DIR: mlops/infra/terraform/envs/dev
22+
TF_WORKING_DIR: terraform/envs/dev
2323
PIPELINE_MODE: stub
2424
PIPELINE_NAME: digital-twin-resilience-dev-pipeline
2525
LLM_PROVIDER: openai

mlops/infra/.DS_Store

-6 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ module "sagemaker_pipeline" {
3030
project_name = local.project_name
3131
env = local.env
3232
pipeline_role_arn = var.sagemaker_execution_role_arn
33-
pipeline_definition_path = "${path.module}/../../../../pipelines/digital_twin_resilience/pipeline_definition.json"
33+
pipeline_definition_path = "${path.module}/../../../mlops/pipelines/digital_twin_resilience/pipeline_definition.json"
3434
tags = local.common_tags
3535
}
File renamed without changes.

0 commit comments

Comments
 (0)