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

fix: Fix attribution for safer cluster modules #830

Merged
merged 3 commits into from
Feb 24, 2021
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: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| basic\_auth\_password | The password to be used with Basic Authentication. | `string` | `""` | no |
Expand Down
6 changes: 6 additions & 0 deletions autogen/main/variables.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -625,3 +625,9 @@ variable "enable_tpu" {
default = false
}
{% endif %}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
8 changes: 6 additions & 2 deletions autogen/main/versions.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
{% set module_path_str = module_path|string %}
{% set module_registry_name = module_path_str.split('/')[-1] %}

locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v13.0.0"]))
bharathkkb marked this conversation as resolved.
Show resolved Hide resolved
}

terraform {
required_version = ">=0.13"

Expand All @@ -32,7 +36,7 @@ terraform {
}
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
{% else %}
required_providers {
Expand All @@ -46,7 +50,7 @@ terraform {
}
}
provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
{% endif %}
}
2 changes: 2 additions & 0 deletions autogen/safer-cluster/main.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,6 @@ module "gke" {
gce_pd_csi_driver = var.gce_pd_csi_driver

notification_config_topic = var.notification_config_topic

_parent_module = local.blueprint_name
}
6 changes: 6 additions & 0 deletions autogen/safer-cluster/variables.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,9 @@ variable "notification_config_topic" {
description = "The desired Pub/Sub topic to which notifications will be sent by GKE. Format is projects/{project}/topics/{topic}."
default = ""
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion autogen/safer-cluster/versions.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@
{% set module_path_str = module_path|string %}
{% set module_registry_name = module_path_str.split('/')[-1] %}

locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine{% if module_registry_name %}:{{ module_registry_name }}{% endif %}/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 0 additions & 1 deletion examples/safer_cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ This example illustrates how to instantiate the opinionated Safer Cluster module

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| compute\_engine\_service\_account | Service account to associate to the nodes in the cluster | `string` | n/a | yes |
| 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
25 changes: 12 additions & 13 deletions examples/safer_cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,18 @@ provider "kubernetes" {
}

module "gke" {
source = "../../modules/safer-cluster/"
project_id = var.project_id
name = "${local.cluster_type}-cluster-${random_string.suffix.result}"
regional = true
region = var.region
network = module.gcp-network.network_name
subnetwork = local.subnet_names[index(module.gcp-network.subnets_names, local.subnet_name)]
ip_range_pods = local.pods_range_name
ip_range_services = local.svc_range_name
compute_engine_service_account = var.compute_engine_service_account
master_ipv4_cidr_block = "172.16.0.0/28"
add_cluster_firewall_rules = true
firewall_inbound_ports = ["9443", "15017"]
source = "../../modules/safer-cluster/"
project_id = var.project_id
name = "${local.cluster_type}-cluster-${random_string.suffix.result}"
regional = true
region = var.region
network = module.gcp-network.network_name
subnetwork = local.subnet_names[index(module.gcp-network.subnets_names, local.subnet_name)]
ip_range_pods = local.pods_range_name
ip_range_services = local.svc_range_name
master_ipv4_cidr_block = "172.16.0.0/28"
add_cluster_firewall_rules = true
firewall_inbound_ports = ["9443", "15017"]

master_authorized_networks = [
{
Expand Down
5 changes: 0 additions & 5 deletions examples/safer_cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,3 @@ variable "region" {
description = "The region to host the cluster in"
default = "us-central1"
}

variable "compute_engine_service_account" {
type = string
description = "Service account to associate to the nodes in the cluster"
}
1 change: 1 addition & 0 deletions modules/beta-private-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-private-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -603,3 +603,9 @@ variable "enable_tpu" {
description = "Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive!"
default = false
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/beta-private-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:beta-private-cluster-update-variant/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:beta-private-cluster-update-variant/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/beta-private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -603,3 +603,9 @@ variable "enable_tpu" {
description = "Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive!"
default = false
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/beta-private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:beta-private-cluster/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:beta-private-cluster/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/beta-public-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-public-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -572,3 +572,9 @@ variable "enable_tpu" {
description = "Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive!"
default = false
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/beta-public-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:beta-public-cluster-update-variant/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:beta-public-cluster-update-variant/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/beta-public-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/beta-public-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -572,3 +572,9 @@ variable "enable_tpu" {
description = "Enable Cloud TPU resources in the cluster. WARNING: changing this after cluster creation is destructive!"
default = false
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/beta-public-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:beta-public-cluster/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:beta-public-cluster/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/private-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| basic\_auth\_password | The password to be used with Basic Authentication. | `string` | `""` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/private-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -474,3 +474,9 @@ variable "impersonate_service_account" {
default = ""
}


variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/private-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:private-cluster-update-variant/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:private-cluster-update-variant/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ Then perform the following commands on the root folder:

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| add\_shadow\_firewall\_rules | Create GKE shadow firewall (the same as default firewall rules with firewall logs enabled). | `bool` | `false` | no |
| basic\_auth\_password | The password to be used with Basic Authentication. | `string` | `""` | no |
Expand Down
6 changes: 6 additions & 0 deletions modules/private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -474,3 +474,9 @@ variable "impersonate_service_account" {
default = ""
}


variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/private-cluster/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
*/


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:private-cluster/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

Expand All @@ -29,6 +33,6 @@ terraform {
}
}
provider_meta "google" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:private-cluster/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/safer-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ For simplicity, we suggest using `roles/container.admin` and

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
| cloudrun | (Beta) Enable CloudRun addon | `bool` | `false` | no |
Expand Down
2 changes: 2 additions & 0 deletions modules/safer-cluster-update-variant/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,6 @@ module "gke" {
gce_pd_csi_driver = var.gce_pd_csi_driver

notification_config_topic = var.notification_config_topic

_parent_module = local.blueprint_name
}
6 changes: 6 additions & 0 deletions modules/safer-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,9 @@ variable "notification_config_topic" {
description = "The desired Pub/Sub topic to which notifications will be sent by GKE. Format is projects/{project}/topics/{topic}."
default = ""
}

variable "_parent_module" {
type = string
description = "(Internal) Parent module which should be referenced in API calls."
default = ""
}
6 changes: 5 additions & 1 deletion modules/safer-cluster-update-variant/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@
// This file was automatically generated from a template in ./autogen/safer-cluster


locals {
blueprint_name = join("/", compact([var._parent_module, "terraform-google-kubernetes-engine:safer-cluster-update-variant/v13.0.0"]))
}

terraform {
required_version = ">=0.13"

provider_meta "google-beta" {
module_name = "blueprints/terraform/terraform-google-kubernetes-engine:safer-cluster-update-variant/v13.0.0"
module_name = "blueprints/terraform/${local.blueprint_name}"
}
}
1 change: 1 addition & 0 deletions modules/safer-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ For simplicity, we suggest using `roles/container.admin` and

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| \_parent\_module | (Internal) Parent module which should be referenced in API calls. | `string` | `""` | no |
| add\_cluster\_firewall\_rules | Create additional firewall rules | `bool` | `false` | no |
| authenticator\_security\_group | The name of the RBAC security group for use with Google security groups in Kubernetes RBAC. Group name must be in format gke-security-groups@yourdomain.com | `string` | `null` | no |
| cloudrun | (Beta) Enable CloudRun addon | `bool` | `false` | no |
Expand Down
Loading