Skip to content

Commit 5c9e906

Browse files
authored
terraform: change all '//' comments to '#' (#48)
1 parent 1f31344 commit 5c9e906

File tree

8 files changed

+13
-13
lines changed
  • terraform
    • aws
      • aws-ec2-autoscaling-relay-to-private-subnet
      • aws-ec2-autoscaling-session-recorder
      • aws-ec2-autoscaling
      • aws-ec2-instance-dual-stack-ipv4-ipv6
      • aws-ec2-instance
    • azure/azure-linux-vm
    • google
      • google-compute-instance
      • internal-modules/google-compute-instance

8 files changed

+13
-13
lines changed

terraform/aws/aws-ec2-autoscaling-relay-to-private-subnet/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ locals {
2323

2424
tailscale_peer_relay_port = 40000
2525

26-
// Modify these to use your own VPC
26+
# Modify these to use your own VPC
2727
vpc_cidr_block = module.vpc.vpc_cidr_block
2828
vpc_id = module.vpc.vpc_id
2929
public_subnet_id = module.vpc.public_subnets[0]
3030
private_subnet_id = module.vpc.private_subnets[0]
3131
instance_type = "c7g.medium"
3232
}
3333

34-
// Remove this to use your own VPC.
34+
# Remove this to use your own VPC.
3535
module "vpc" {
3636
source = "../internal-modules/aws-vpc"
3737

terraform/aws/aws-ec2-autoscaling-session-recorder/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ locals {
1313
"--ssh",
1414
]
1515

16-
// Modify these to use your own VPC
16+
# Modify these to use your own VPC
1717
vpc_cidr_block = module.vpc.vpc_cidr_block
1818
vpc_id = module.vpc.vpc_id
1919
subnet_id = module.vpc.private_subnets[0]
@@ -25,7 +25,7 @@ locals {
2525
])
2626
}
2727

28-
// Remove this to use your own VPC.
28+
# Remove this to use your own VPC.
2929
module "vpc" {
3030
source = "../internal-modules/aws-vpc"
3131

terraform/aws/aws-ec2-autoscaling/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ locals {
2121
])}",
2222
]
2323

24-
// Modify these to use your own VPC
24+
# Modify these to use your own VPC
2525
vpc_cidr_block = module.vpc.vpc_cidr_block
2626
vpc_id = module.vpc.vpc_id
2727
subnet_id = module.vpc.public_subnets[0]
2828
security_group_ids = [aws_security_group.tailscale.id]
2929
instance_type = "c7g.medium"
3030
}
3131

32-
// Remove this to use your own VPC.
32+
# Remove this to use your own VPC.
3333
module "vpc" {
3434
source = "../internal-modules/aws-vpc"
3535

terraform/aws/aws-ec2-instance-dual-stack-ipv4-ipv6/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ locals {
2121
])}",
2222
]
2323

24-
// Modify these to use your own VPC
24+
# Modify these to use your own VPC
2525
vpc_cidr_block = module.vpc.vpc_cidr_block
2626
vpc_id = module.vpc.vpc_id
2727
subnet_id = module.vpc.public_subnets[0]
2828
security_group_ids = [aws_security_group.tailscale.id]
2929
instance_type = "c7g.medium"
3030
}
3131

32-
// Remove this to use your own VPC.
32+
# Remove this to use your own VPC.
3333
module "vpc" {
3434
source = "../internal-modules/aws-vpc"
3535

terraform/aws/aws-ec2-instance/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ locals {
2121
])}",
2222
]
2323

24-
// Modify these to use your own VPC
24+
# Modify these to use your own VPC
2525
vpc_cidr_block = module.vpc.vpc_cidr_block
2626
vpc_id = module.vpc.vpc_id
2727
subnet_id = module.vpc.public_subnets[0]
2828
security_group_ids = [aws_security_group.tailscale.id]
2929
instance_type = "c7g.medium"
3030
}
3131

32-
// Remove this to use your own VPC.
32+
# Remove this to use your own VPC.
3333
module "vpc" {
3434
source = "../internal-modules/aws-vpc"
3535

terraform/azure/azure-linux-vm/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121
))}",
2222
]
2323

24-
// Modify these to use your own VPC
24+
# Modify these to use your own VPC
2525
resource_group_id = azurerm_resource_group.main.id
2626
resource_group_name = azurerm_resource_group.main.name
2727
location = azurerm_resource_group.main.location

terraform/google/google-compute-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ locals {
2121
))}",
2222
]
2323

24-
// Modify these to use your own VPC
24+
# Modify these to use your own VPC
2525
project_id = var.project_id
2626
region = var.region
2727
zone = var.zone

terraform/google/internal-modules/google-compute-instance/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource "google_compute_instance" "tailscale_instance" {
2828
network_interface {
2929
subnetwork = var.subnet
3030
access_config {
31-
// Ephemeral public IP
31+
# Ephemeral public IP
3232
}
3333
}
3434

0 commit comments

Comments
 (0)