Pauls-AWS-Dev-Pod/providers.tf

13 lines
231 B
Terraform
Raw Normal View History

2024-03-28 18:39:16 +00:00
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
}
}
# Configure the AWS Provider
provider "aws" {
region = var.aws_region
access_key = var.aws_access_key
secret_key = var.aws_secret_key
2024-03-28 17:06:06 +00:00
}