Skip to content

Commit 6589a31

Browse files
authored
Update provider configuration in terraform-aws.tf (#147)
1 parent 4cc2502 commit 6589a31

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/mlstacks/terraform/remote-state-terraform-config/terraform-aws.tf

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# defining the providers for the recipe module
22
terraform {
33
required_providers {
4-
google = {
5-
source = "hashicorp/google"
4+
aws = {
5+
source = "hashicorp/aws"
6+
}
7+
8+
random = {
9+
source = "hashicorp/random"
10+
version = "3.1.0"
611
}
712

813
local = {
@@ -40,6 +45,6 @@ terraform {
4045
required_version = ">= 0.14.8"
4146
}
4247

43-
provider "google" {
44-
project = var.project_id
48+
provider "aws" {
49+
region = var.region
4550
}

0 commit comments

Comments
 (0)