diff --git a/Makefile b/Makefile index fcafbf5..cee68f0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -NAME := confluent +NAME := confluent-platform HOSTNAME := aidanmelen PROVIDER := kubernetes -VERSION := 0.9.4 +VERSION := 0.9.5 SHELL := /bin/bash .PHONY: help all diff --git a/README.md b/README.md index 7dedee3..42194e3 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,9 @@ Similar to the [values file for Helm](https://helm.sh/docs/chart_template_guide/ ```hcl module "confluent_platform" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run @@ -78,7 +80,7 @@ Run Terratest using the [Makefile](https://github.com/aidanmelen/terraform-aws-s ### Results ``` -Terratest Suite (Module v0.9.4) (Terraform v1.2.6) +Terratest Suite (Module v0.9.5) (Terraform v1.2.6) --- PASS: TestTerraformCompleteExample (175.48s) --- PASS: TestTerraformConfluentOperatorExample (22.24s) --- PASS: TestTerraformConfluentPlatformExample (236.10s) diff --git a/examples/complete/.main.tf.docs b/examples/complete/.main.tf.docs index dd1a4b0..7cc2a87 100644 --- a/examples/complete/.main.tf.docs +++ b/examples/complete/.main.tf.docs @@ -1,6 +1,6 @@ module "confluent_platform" { - source = "aidanmelen/confluent/kubernetes" - version = ">= 0.9.4" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" namespace = var.namespace diff --git a/examples/complete/README.md b/examples/complete/README.md index 2dbac87..e65b4d3 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -21,8 +21,8 @@ kubectl apply -f ./crds/2.4.0 ```hcl module "confluent_platform" { - source = "aidanmelen/confluent/kubernetes" - version = ">= 0.9.4" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" namespace = var.namespace diff --git a/examples/confluent_platform/.main.tf.docs b/examples/confluent_platform/.main.tf.docs index 9a0f4e3..ea5b216 100644 --- a/examples/confluent_platform/.main.tf.docs +++ b/examples/confluent_platform/.main.tf.docs @@ -1,5 +1,7 @@ module "confluent_platform" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/confluent_platform/README.md b/examples/confluent_platform/README.md index d6224ea..68e5f0b 100644 --- a/examples/confluent_platform/README.md +++ b/examples/confluent_platform/README.md @@ -16,7 +16,9 @@ Release the [Confluent Operator example](https://github.com/aidanmelen/terraform ```hcl module "confluent_platform" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/confluent_platform/main.tf b/examples/confluent_platform/main.tf index 9a0f4e3..21862a3 100644 --- a/examples/confluent_platform/main.tf +++ b/examples/confluent_platform/main.tf @@ -1,5 +1,6 @@ module "confluent_platform" { - source = "../../" + source = "../../" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/confluent_platform_singlenode/.main.tf.docs b/examples/confluent_platform_singlenode/.main.tf.docs index 45e2f99..e39697c 100644 --- a/examples/confluent_platform_singlenode/.main.tf.docs +++ b/examples/confluent_platform_singlenode/.main.tf.docs @@ -1,5 +1,7 @@ module "confluent_platform_singlenode" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/confluent_platform_singlenode/README.md b/examples/confluent_platform_singlenode/README.md index 691d785..7c229b5 100644 --- a/examples/confluent_platform_singlenode/README.md +++ b/examples/confluent_platform_singlenode/README.md @@ -17,7 +17,9 @@ Release the [Confluent Operator example](https://github.com/aidanmelen/terraform ```hcl module "confluent_platform_singlenode" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/confluent_platform_singlenode/main.tf b/examples/confluent_platform_singlenode/main.tf index 45e2f99..49ef980 100644 --- a/examples/confluent_platform_singlenode/main.tf +++ b/examples/confluent_platform_singlenode/main.tf @@ -1,5 +1,6 @@ module "confluent_platform_singlenode" { - source = "../../" + source = "../../" + namespace = var.namespace # assumes the confluent operator was deployed in another terraform run diff --git a/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/README.md b/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/README.md index e573366..82f2217 100644 --- a/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/README.md +++ b/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/README.md @@ -34,7 +34,7 @@ module "confluent_platform" { create_zookeeper = false create_kafka = false - # Confluent Platform components working with AWS MSK and SASL/IAM + # Confluent Platform components with AWS MSK and SASL/IAM create_connect = true create_schemaregistry = true create_ksqldb = true diff --git a/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/main.tf b/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/main.tf index ea0ca81..3d47573 100644 --- a/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/main.tf +++ b/examples/hybrid_aws_msk/confluent_platform_sasl_iam_secure/main.tf @@ -21,7 +21,7 @@ module "confluent_platform" { create_zookeeper = false create_kafka = false - # Confluent Platform components working with AWS MSK and SASL/IAM + # Confluent Platform components with AWS MSK and SASL/IAM create_connect = true create_schemaregistry = true create_ksqldb = true diff --git a/examples/secure_authn_encrypt_deploy/.main.tf.docs b/examples/secure_authn_encrypt_deploy/.main.tf.docs index e94da82..ac38950 100644 --- a/examples/secure_authn_encrypt_deploy/.main.tf.docs +++ b/examples/secure_authn_encrypt_deploy/.main.tf.docs @@ -1,5 +1,7 @@ module "confluent_platform" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace zookeeper = yamldecode(<<-EOF diff --git a/examples/secure_authn_encrypt_deploy/README.md b/examples/secure_authn_encrypt_deploy/README.md index 4e8a86d..9973fa9 100644 --- a/examples/secure_authn_encrypt_deploy/README.md +++ b/examples/secure_authn_encrypt_deploy/README.md @@ -12,7 +12,9 @@ This example assumes you have a Kubernetes cluster running locally on Docker Des ```hcl module "confluent_platform" { - source = "../../" + source = "aidanmelen/confluent-platform/kubernetes" + version = ">= 0.9.5" + namespace = var.namespace zookeeper = yamldecode(<<-EOF diff --git a/examples/secure_authn_encrypt_deploy/main.tf b/examples/secure_authn_encrypt_deploy/main.tf index e94da82..b7bcc32 100644 --- a/examples/secure_authn_encrypt_deploy/main.tf +++ b/examples/secure_authn_encrypt_deploy/main.tf @@ -1,5 +1,6 @@ module "confluent_platform" { - source = "../../" + source = "../../" + namespace = var.namespace zookeeper = yamldecode(<<-EOF diff --git a/test/.terratest.docs b/test/.terratest.docs index ff4ecb2..fd47ea0 100644 --- a/test/.terratest.docs +++ b/test/.terratest.docs @@ -1,4 +1,4 @@ -Terratest Suite (Module v0.9.4) (Terraform v1.2.6) +Terratest Suite (Module v0.9.5) (Terraform v1.2.6) --- PASS: TestTerraformCompleteExample (175.48s) --- PASS: TestTerraformConfluentOperatorExample (22.24s) --- PASS: TestTerraformConfluentPlatformExample (236.10s)