Skip to content

Commit

Permalink
Update provider configuration in terraform-aws.tf (zenml-io#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl authored Feb 20, 2024
1 parent 4cc2502 commit 6589a31
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# defining the providers for the recipe module
terraform {
required_providers {
google = {
source = "hashicorp/google"
aws = {
source = "hashicorp/aws"
}

random = {
source = "hashicorp/random"
version = "3.1.0"
}

local = {
Expand Down Expand Up @@ -40,6 +45,6 @@ terraform {
required_version = ">= 0.14.8"
}

provider "google" {
project = var.project_id
provider "aws" {
region = var.region
}

0 comments on commit 6589a31

Please sign in to comment.