summaryrefslogtreecommitdiff
path: root/spec/fixtures/terraform/simple/main.tf
blob: b025be828df0d57c241a18d8ab8c0acce1c0d005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
terraform {
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 3.27"
    }
  }

  required_version = ">= 0.14.9"
}

provider "aws" {
  profile = "default"
  region  = "ca-central-1"
}