diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-05-01 15:48:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-01 15:48:15 +0100 |
commit | fc9128e33469aea2b65b81589a3e9c9399ddc0c7 (patch) | |
tree | f27518abd233c3620122a867a5043ff37fd334b4 /Terraform/AWS/instance-with-basic-configs/provider.tf | |
parent | 65f456222375c017e45f27dfb283d1d4176e260f (diff) | |
parent | cb2f5c86fd732a2d10a758bc3a90fc4ee33323de (diff) | |
download | vyos-automation-fc9128e33469aea2b65b81589a3e9c9399ddc0c7.tar.gz vyos-automation-fc9128e33469aea2b65b81589a3e9c9399ddc0c7.zip |
Merge pull request #5 from aslanvyos/main
Terraform projects for VyOS deployment on AWS
Diffstat (limited to 'Terraform/AWS/instance-with-basic-configs/provider.tf')
-rw-r--r-- | Terraform/AWS/instance-with-basic-configs/provider.tf | 22 |
1 files changed, 22 insertions, 0 deletions
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 |