Skip to content

Commit 110e277

Browse files
committed
address more copilot feedback
1 parent 42dded2 commit 110e277

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

terraform/aws/aws-eks-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# aws-eks-tailscale-operator
1+
# aws-eks-operator
22

33
This example creates the following:
44

terraform/aws/aws-eks-operator/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ locals {
1717
min_size = 1
1818

1919
# Tailscale Operator configuration
20-
operator_name = "${local.name}-operator"
20+
operator_name = local.name
2121
operator_version = "1.92.4"
2222
tailscale_oauth_client_id = var.tailscale_oauth_client_id
2323
tailscale_oauth_client_secret = var.tailscale_oauth_client_secret

terraform/aws/aws-eks-operator/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ output "tailscale_operator_namespace" {
1515

1616
output "cmd_kubeconfig_tailscale" {
1717
description = "Command to configure kubeconfig for Tailscale access to the EKS cluster"
18-
value = "tailscale configure kubeconfig ${local.operator_name}"
18+
value = "tailscale configure kubeconfig ${helm_release.tailscale_operator.name}"
1919
}
2020

2121
output "cmd_kubeconfig_aws" {

0 commit comments

Comments
 (0)