Update test for azurerm_lb_probe id.
This commit is contained in:
parent
25794f6692
commit
c1d4397673
|
@ -2,6 +2,7 @@ package azurerm
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/Azure/azure-sdk-for-go/arm/network"
|
"github.com/Azure/azure-sdk-for-go/arm/network"
|
||||||
|
@ -15,6 +16,12 @@ func TestAccAzureRMLoadBalancerProbe_basic(t *testing.T) {
|
||||||
ri := acctest.RandInt()
|
ri := acctest.RandInt()
|
||||||
probeName := fmt.Sprintf("probe-%d", ri)
|
probeName := fmt.Sprintf("probe-%d", ri)
|
||||||
|
|
||||||
|
testAccPreCheck(t)
|
||||||
|
subscriptionID := os.Getenv("ARM_SUBSCRIPTION_ID")
|
||||||
|
probe_id := fmt.Sprintf(
|
||||||
|
"/subscriptions/%s/resourceGroups/acctestrg-%d/providers/Microsoft.Network/loadBalancers/arm-test-loadbalancer-%d/probes/%s",
|
||||||
|
subscriptionID, ri, ri, probeName)
|
||||||
|
|
||||||
resource.Test(t, resource.TestCase{
|
resource.Test(t, resource.TestCase{
|
||||||
PreCheck: func() { testAccPreCheck(t) },
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
Providers: testAccProviders,
|
Providers: testAccProviders,
|
||||||
|
@ -25,6 +32,8 @@ func TestAccAzureRMLoadBalancerProbe_basic(t *testing.T) {
|
||||||
Check: resource.ComposeTestCheckFunc(
|
Check: resource.ComposeTestCheckFunc(
|
||||||
testCheckAzureRMLoadBalancerExists("azurerm_lb.test", &lb),
|
testCheckAzureRMLoadBalancerExists("azurerm_lb.test", &lb),
|
||||||
testCheckAzureRMLoadBalancerProbeExists(probeName, &lb),
|
testCheckAzureRMLoadBalancerProbeExists(probeName, &lb),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"azurerm_lb_probe.test", "id", probe_id),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue