FIX: Error: failed to get shared config profile

This commit is contained in:
matthieu42morin 2024-02-29 18:52:54 +01:00
parent 04824d5695
commit b75f3facd6
1 changed files with 19 additions and 3 deletions

View File

@ -1,4 +1,20 @@
terraform {
required_version = ">= 1.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.5"
}
}
}
provider "aws" {
region = var.aws_default_region
profile = var.aws_profile
}
provider "random" {
}