From cb2f5c86fd732a2d10a758bc3a90fc4ee33323de Mon Sep 17 00:00:00 2001 From: aslanvyos Date: Thu, 31 Oct 2024 10:04:05 +0400 Subject: Add Terraform project for VyOS instance with basic setup and with network services (VPN, NAT, DNS) Added CloudFormation templates for VyOS deployment on AWS --- .../AWS/instance-with-basic-configs/provider.tf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Terraform/AWS/instance-with-basic-configs/provider.tf (limited to 'Terraform/AWS/instance-with-basic-configs/provider.tf') diff --git a/Terraform/AWS/instance-with-basic-configs/provider.tf b/Terraform/AWS/instance-with-basic-configs/provider.tf new file mode 100644 index 0000000..c6b24ff --- /dev/null +++ b/Terraform/AWS/instance-with-basic-configs/provider.tf @@ -0,0 +1,22 @@ +# AWS PROVIDER CONFIGURATION + +terraform { + required_providers { + aws = { + source = "hashicorp/aws" + version = "~> 5.0" + } + } +} + +provider "aws" { + region = var.aws_region + default_tags { + tags = { + Company = "VyOS Inc" + Project = "VyOS-Demo" + Environment = "Lab" + ManagedBy = "Terraform" + } + } +} \ No newline at end of file -- cgit v1.2.3