Skip to content

sirlegendary/terraform-aws-module-vpn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-aws-module-vpn

terraform {
  backend "remote" {
    organization = "ORGANISATION"
    workspaces {
      name = "WORKSPACE NAME"
    }
  }
  required_providers {
    aws = {
      source  = "hashicorp/aws"
      version = "~> 4.0"
    }
  }
}

Configure the AWS Provider

provider "aws" {
  region = "REGION"
}