Terraform module to create Storage resource on gcp .
This module has a few dependencies:
IMPORTANT: Since the master
branch used in source
varies based on new modifications, we suggest that you use the release versions [here](https://github.com/slovink/terraform-gcp-gke /releases).
Here is an example of how you can use this module in your inventory structure:
module "gke" {
source = "../"
name = "gke"
environment = var.environment
label_order = var.label_order
network = module.vpc.vpc_id
subnetwork = module.subnet.id
module_enabled = true
google_container_cluster_enabled = true
location = "europe-west3"
remove_default_node_pool = false
gke_version = "1.25.6-gke.1000"
initial_node_count = 1
google_container_node_pool_enabled = true
node_count = 1
cluster_name = "test-gke"
project_id = var.gcp_project_id
region = var.gcp_region
service_account = ""
}
If you come accross a bug or have any feedback, please log it in our issue tracker, or feel free to drop us an email at devops@slovink.com.
If you have found it worth your time, go ahead and give us a ★ on our GitHub!