We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc2502 commit 6589a31Copy full SHA for 6589a31
src/mlstacks/terraform/remote-state-terraform-config/terraform-aws.tf
@@ -1,8 +1,13 @@
1
# defining the providers for the recipe module
2
terraform {
3
required_providers {
4
- google = {
5
- source = "hashicorp/google"
+ aws = {
+ source = "hashicorp/aws"
6
+ }
7
+
8
+ random = {
9
+ source = "hashicorp/random"
10
+ version = "3.1.0"
11
}
12
13
local = {
@@ -40,6 +45,6 @@ terraform {
40
45
required_version = ">= 0.14.8"
41
46
42
47
43
-provider "google" {
44
- project = var.project_id
48
+provider "aws" {
49
+ region = var.region
50
0 commit comments