From ac9135ad2e7dd983ddc188e8b89b15715e7574b8 Mon Sep 17 00:00:00 2001 From: Lukas Schmitt Date: Thu, 14 Mar 2019 14:07:05 +0100 Subject: [PATCH] increase max capacity for eventhub namespaces to 100 --- azurerm/resource_arm_eventhub_namespace.go | 4 ++-- azurerm/resource_arm_eventhub_namespace_test.go | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/azurerm/resource_arm_eventhub_namespace.go b/azurerm/resource_arm_eventhub_namespace.go index 8dce4f6aaf35..45c7db7cab49 100644 --- a/azurerm/resource_arm_eventhub_namespace.go +++ b/azurerm/resource_arm_eventhub_namespace.go @@ -58,7 +58,7 @@ func resourceArmEventHubNamespace() *schema.Resource { Type: schema.TypeInt, Optional: true, Default: 1, - ValidateFunc: validation.IntBetween(1, 20), + ValidateFunc: validation.IntBetween(1, 100), }, "auto_inflate_enabled": { @@ -77,7 +77,7 @@ func resourceArmEventHubNamespace() *schema.Resource { Type: schema.TypeInt, Optional: true, Computed: true, - ValidateFunc: validation.IntBetween(0, 20), + ValidateFunc: validation.IntBetween(0, 100), }, "default_primary_connection_string": { diff --git a/azurerm/resource_arm_eventhub_namespace_test.go b/azurerm/resource_arm_eventhub_namespace_test.go index 1b6289ff0392..414a21e2fb3a 100644 --- a/azurerm/resource_arm_eventhub_namespace_test.go +++ b/azurerm/resource_arm_eventhub_namespace_test.go @@ -228,7 +228,7 @@ func TestAccAzureRMEventHubNamespace_BasicWithCapacity(t *testing.T) { Config: config, Check: resource.ComposeTestCheckFunc( testCheckAzureRMEventHubNamespaceExists(resourceName), - resource.TestCheckResourceAttr(resourceName, "capacity", "20"), + resource.TestCheckResourceAttr(resourceName, "capacity", "100"), ), }, }, @@ -250,7 +250,7 @@ func TestAccAzureRMEventHubNamespace_BasicWithCapacityUpdate(t *testing.T) { Config: preConfig, Check: resource.ComposeTestCheckFunc( testCheckAzureRMEventHubNamespaceExists(resourceName), - resource.TestCheckResourceAttr(resourceName, "capacity", "20"), + resource.TestCheckResourceAttr(resourceName, "capacity", "100"), ), }, { @@ -311,7 +311,7 @@ func TestAccAzureRMEventHubNamespace_maximumThroughputUnitsUpdate(t *testing.T) testCheckAzureRMEventHubNamespaceExists(resourceName), resource.TestCheckResourceAttr(resourceName, "sku", "Standard"), resource.TestCheckResourceAttr(resourceName, "capacity", "2"), - resource.TestCheckResourceAttr(resourceName, "maximum_throughput_units", "20"), + resource.TestCheckResourceAttr(resourceName, "maximum_throughput_units", "100"), ), }, {