Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simonebruzzechesse committed Dec 13, 2024
1 parent a6972dd commit e65f470
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions blueprints/secops/bindplane-gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,16 @@ module "bindplane-cluster" {
master_ipv4_cidr_block = var.network_config.ip_range_gke_master
master_authorized_ranges = var.cluster_config.master_authorized_ranges
}
private_cluster_config = {
enable_private_endpoint = true
master_global_access = true
access_config = {
dns_access = false
ip_access = {
authorized_ranges = {
"rfc-1918-10-8" = "10.0.0.0/8"
}
private_endpoint_config = {
global_access = true
}
}
}
enable_features = {
gateway_api = true
Expand Down

0 comments on commit e65f470

Please sign in to comment.