Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused variable ip_source_ranges_ssh from example safer_cluster_iap_bastion #1199

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/safer_cluster_iap_bastion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
6 changes: 0 additions & 6 deletions examples/safer_cluster_iap_bastion/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
}