From 5197f2214bff1693a0d469d66f3430a994d6a885 Mon Sep 17 00:00:00 2001 From: Nick Nelson Date: Thu, 7 Apr 2022 09:27:59 -0700 Subject: [PATCH] fix: removed unused variable ip_source_ranges_ssh from example safer_cluster_iap_bastion (#1199) * Removed unused variable ip_source_ranges_ssh from example safer_cluster_iap_bastion * Didn't include README in original commit. New Push. --- examples/safer_cluster_iap_bastion/README.md | 1 - examples/safer_cluster_iap_bastion/variables.tf | 6 ------ 2 files changed, 7 deletions(-) diff --git a/examples/safer_cluster_iap_bastion/README.md b/examples/safer_cluster_iap_bastion/README.md index 41c4918fe..7a1eb998b 100644 --- a/examples/safer_cluster_iap_bastion/README.md +++ b/examples/safer_cluster_iap_bastion/README.md @@ -41,7 +41,6 @@ To deploy this example: | cluster\_name | The name of the cluster | `string` | `"safer-cluster-iap-bastion"` | no | | ip\_range\_pods\_name | The secondary ip range to use for pods | `string` | `"ip-range-pods"` | no | | ip\_range\_services\_name | The secondary ip range to use for pods | `string` | `"ip-range-svc"` | no | -| ip\_source\_ranges\_ssh | Additional source ranges to allow for ssh to bastion host. 35.235.240.0/20 allowed by default for IAP tunnel. | `list(string)` | `[]` | no | | network\_name | The name of the network being created to host the cluster in | `string` | `"safer-cluster-network"` | no | | project\_id | The project ID to host the cluster in | `string` | n/a | yes | | region | The region to host the cluster in | `string` | `"us-central1"` | no | diff --git a/examples/safer_cluster_iap_bastion/variables.tf b/examples/safer_cluster_iap_bastion/variables.tf index e60fd35bd..42dc4f5f2 100644 --- a/examples/safer_cluster_iap_bastion/variables.tf +++ b/examples/safer_cluster_iap_bastion/variables.tf @@ -69,9 +69,3 @@ variable "bastion_members" { description = "List of users, groups, SAs who need access to the bastion host" default = [] } - -variable "ip_source_ranges_ssh" { - type = list(string) - description = "Additional source ranges to allow for ssh to bastion host. 35.235.240.0/20 allowed by default for IAP tunnel." - default = [] -}