Files
terraform/terraform/scripts/provider.tf

29 lines
690 B
HCL

terraform {
required_version = ">= 1.5.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
}
}
}
provider "aws" {
region = var.region
access_key = "test"
secret_key = "test"
s3_use_path_style = true
skip_credentials_validation = true
skip_metadata_api_check = true
skip_requesting_account_id = true
endpoints {
ec2 = var.localstack_endpoint
s3 = var.localstack_endpoint
route53 = var.localstack_endpoint
iam = var.localstack_endpoint
acm = var.localstack_endpoint
sts = var.localstack_endpoint
}
}