This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch kafka-s3-openshift-example in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git
commit 48368c22699e4fdcf2b7a3f497a58a24f71dd4df Author: Andrea Cosentino <[email protected]> AuthorDate: Thu Nov 16 12:03:16 2023 +0100 Kafka-S3 Example with Strimzi and Camel K operator on openshift Signed-off-by: Andrea Cosentino <[email protected]> --- jbang/azure-eventhubs-kafka-azure-schema-registry/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jbang/azure-eventhubs-kafka-azure-schema-registry/main.tf b/jbang/azure-eventhubs-kafka-azure-schema-registry/main.tf index ecc6592..ba4fe6d 100644 --- a/jbang/azure-eventhubs-kafka-azure-schema-registry/main.tf +++ b/jbang/azure-eventhubs-kafka-azure-schema-registry/main.tf @@ -33,13 +33,13 @@ provider "azurerm" { # Resource group. resource "azurerm_resource_group" "example" { - name = "example-test12345-rg" + name = "example-rg" location = "West Europe" } # Eventhubs Namepsace. resource "azurerm_eventhub_namespace" "example" { - name = "example-test12345-namespace" + name = "example-namespace" location = azurerm_resource_group.example.location resource_group_name = azurerm_resource_group.example.name sku = "Standard"
