File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ terraform {
2+ required_version = " >= 1.6.0"
3+
4+ backend "s3" {
5+ bucket = " dougdaly-terraform-state"
6+ key = " entitlements/dev/terraform.tfstate"
7+ region = " us-west-2"
8+ encrypt = true
9+ use_lockfile = true
10+ }
11+
12+ required_providers {
13+ aws = {
14+ source = " hashicorp/aws"
15+ version = " ~> 6.0"
16+ }
17+ }
18+ }
Original file line number Diff line number Diff line change 1- terraform {
2- required_version = " >= 1.6.0"
3-
4- required_providers {
5- aws = {
6- source = " hashicorp/aws"
7- version = " ~> 6.0"
8- }
9- }
10- }
11-
121provider "aws" {
132 region = var. aws_region
143}
@@ -32,4 +21,4 @@ module "sagemaker_pipeline" {
3221 pipeline_role_arn = var. sagemaker_execution_role_arn
3322 pipeline_definition_path = " ${ path . module } /../../../mlops/pipelines/digital_twin_resilience/pipeline_definition.json"
3423 tags = local. common_tags
35- }
24+ }
You can’t perform that action at this time.
0 commit comments