Skip to content

Commit

Permalink
fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanmelen committed Nov 13, 2022
1 parent 7a9ca2c commit 5581b36
Show file tree
Hide file tree
Showing 16 changed files with 37 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions examples/complete/.main.tf.docs
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion examples/confluent_platform/.main.tf.docs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion examples/confluent_platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion examples/confluent_platform/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "confluent_platform" {
source = "../../"
source = "../../"

namespace = var.namespace

# assumes the confluent operator was deployed in another terraform run
Expand Down
4 changes: 3 additions & 1 deletion examples/confluent_platform_singlenode/.main.tf.docs
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion examples/confluent_platform_singlenode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion examples/confluent_platform_singlenode/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "confluent_platform_singlenode" {
source = "../../"
source = "../../"

namespace = var.namespace

# assumes the confluent operator was deployed in another terraform run
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion examples/secure_authn_encrypt_deploy/.main.tf.docs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module "confluent_platform" {
source = "../../"
source = "aidanmelen/confluent-platform/kubernetes"
version = ">= 0.9.5"

namespace = var.namespace

zookeeper = yamldecode(<<-EOF
Expand Down
4 changes: 3 additions & 1 deletion examples/secure_authn_encrypt_deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion examples/secure_authn_encrypt_deploy/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module "confluent_platform" {
source = "../../"
source = "../../"

namespace = var.namespace

zookeeper = yamldecode(<<-EOF
Expand Down
2 changes: 1 addition & 1 deletion test/.terratest.docs
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 5581b36

Please sign in to comment.