From 0e6429c74fea84aca03ca86912a969f2a921c244 Mon Sep 17 00:00:00 2001 From: Cameron Stokes Date: Sun, 21 Dec 2025 10:06:31 -0500 Subject: [PATCH] terraform: change all '//' comments to '#' --- .../aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf | 4 ++-- terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf | 4 ++-- terraform/aws/aws-ec2-autoscaling/main.tf | 4 ++-- terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf | 4 ++-- terraform/aws/aws-ec2-instance/main.tf | 4 ++-- terraform/azure/azure-linux-vm/main.tf | 2 +- terraform/google/google-compute-instance/main.tf | 2 +- .../google/internal-modules/google-compute-instance/main.tf | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/terraform/aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf b/terraform/aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf index ccfe171..29c85c0 100644 --- a/terraform/aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf +++ b/terraform/aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf @@ -23,7 +23,7 @@ locals { tailscale_peer_relay_port = 40000 - // Modify these to use your own VPC + # Modify these to use your own VPC vpc_cidr_block = module.vpc.vpc_cidr_block vpc_id = module.vpc.vpc_id public_subnet_id = module.vpc.public_subnets[0] @@ -31,7 +31,7 @@ locals { instance_type = "c7g.medium" } -// Remove this to use your own VPC. +# Remove this to use your own VPC. module "vpc" { source = "../internal-modules/aws-vpc" diff --git a/terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf b/terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf index 3dd660d..8f12ab8 100644 --- a/terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf +++ b/terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf @@ -13,7 +13,7 @@ locals { "--ssh", ] - // Modify these to use your own VPC + # Modify these to use your own VPC vpc_cidr_block = module.vpc.vpc_cidr_block vpc_id = module.vpc.vpc_id subnet_id = module.vpc.private_subnets[0] @@ -25,7 +25,7 @@ locals { ]) } -// Remove this to use your own VPC. +# Remove this to use your own VPC. module "vpc" { source = "../internal-modules/aws-vpc" diff --git a/terraform/aws/aws-ec2-autoscaling/main.tf b/terraform/aws/aws-ec2-autoscaling/main.tf index 31c5a58..ac672be 100644 --- a/terraform/aws/aws-ec2-autoscaling/main.tf +++ b/terraform/aws/aws-ec2-autoscaling/main.tf @@ -21,7 +21,7 @@ locals { ])}", ] - // Modify these to use your own VPC + # Modify these to use your own VPC vpc_cidr_block = module.vpc.vpc_cidr_block vpc_id = module.vpc.vpc_id subnet_id = module.vpc.public_subnets[0] @@ -29,7 +29,7 @@ locals { instance_type = "c7g.medium" } -// Remove this to use your own VPC. +# Remove this to use your own VPC. module "vpc" { source = "../internal-modules/aws-vpc" diff --git a/terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf b/terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf index 3895f68..a679065 100644 --- a/terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf +++ b/terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf @@ -21,7 +21,7 @@ locals { ])}", ] - // Modify these to use your own VPC + # Modify these to use your own VPC vpc_cidr_block = module.vpc.vpc_cidr_block vpc_id = module.vpc.vpc_id subnet_id = module.vpc.public_subnets[0] @@ -29,7 +29,7 @@ locals { instance_type = "c7g.medium" } -// Remove this to use your own VPC. +# Remove this to use your own VPC. module "vpc" { source = "../internal-modules/aws-vpc" diff --git a/terraform/aws/aws-ec2-instance/main.tf b/terraform/aws/aws-ec2-instance/main.tf index f85fc79..b64bcd3 100644 --- a/terraform/aws/aws-ec2-instance/main.tf +++ b/terraform/aws/aws-ec2-instance/main.tf @@ -21,7 +21,7 @@ locals { ])}", ] - // Modify these to use your own VPC + # Modify these to use your own VPC vpc_cidr_block = module.vpc.vpc_cidr_block vpc_id = module.vpc.vpc_id subnet_id = module.vpc.public_subnets[0] @@ -29,7 +29,7 @@ locals { instance_type = "c7g.medium" } -// Remove this to use your own VPC. +# Remove this to use your own VPC. module "vpc" { source = "../internal-modules/aws-vpc" diff --git a/terraform/azure/azure-linux-vm/main.tf b/terraform/azure/azure-linux-vm/main.tf index 2c39950..90a5663 100644 --- a/terraform/azure/azure-linux-vm/main.tf +++ b/terraform/azure/azure-linux-vm/main.tf @@ -21,7 +21,7 @@ locals { ))}", ] - // Modify these to use your own VPC + # Modify these to use your own VPC resource_group_id = azurerm_resource_group.main.id resource_group_name = azurerm_resource_group.main.name location = azurerm_resource_group.main.location diff --git a/terraform/google/google-compute-instance/main.tf b/terraform/google/google-compute-instance/main.tf index 7aad25a..a9bf1e6 100644 --- a/terraform/google/google-compute-instance/main.tf +++ b/terraform/google/google-compute-instance/main.tf @@ -21,7 +21,7 @@ locals { ))}", ] - // Modify these to use your own VPC + # Modify these to use your own VPC project_id = var.project_id region = var.region zone = var.zone diff --git a/terraform/google/internal-modules/google-compute-instance/main.tf b/terraform/google/internal-modules/google-compute-instance/main.tf index fb26d9f..e2469a1 100644 --- a/terraform/google/internal-modules/google-compute-instance/main.tf +++ b/terraform/google/internal-modules/google-compute-instance/main.tf @@ -28,7 +28,7 @@ resource "google_compute_instance" "tailscale_instance" { network_interface { subnetwork = var.subnet access_config { - // Ephemeral public IP + # Ephemeral public IP } }