terraform-aws-ovpn-server/providers.tf

23 lines
362 B
HCL

terraform {
required_version = ">= 1.0.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
http = {
source = "hashicorp/http"
version = "~> 3.0"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
}
}
backend "s3" {}
}
provider "aws" {
region = var.region
}