provider.tf 239 B

1234567891011121314
  1. terraform {
  2. required_providers {
  3. aws = {
  4. source = "hashicorp/aws"
  5. version = "~> 3.0"
  6. }
  7. }
  8. }
  9. # Configure the AWS Provider
  10. provider "aws" {
  11. profile = "default" # should match ~/.aws/config
  12. region = "us-east-2"
  13. }