diff --git a/test/functional/shared/resources/testdata/corerp-resources-gateway-failure.bicep b/test/functional/shared/resources/testdata/corerp-resources-gateway-failure.bicep index 96f3896a41..a2d04fe3b7 100644 --- a/test/functional/shared/resources/testdata/corerp-resources-gateway-failure.bicep +++ b/test/functional/shared/resources/testdata/corerp-resources-gateway-failure.bicep @@ -3,13 +3,6 @@ import radius as radius @description('ID of the Radius environment. Passed in automatically via the rad CLI') param environment string -@description('Specifies the image of the container resource.') -param magpieimage string - -@description('Specifies the location for resources.') -param location string = 'local' - - resource demoApplication 'Applications.Core/applications@2022-03-15-privatepreview' = { name: 'corerp-resources-gateway-failure-app' properties: { @@ -52,25 +45,3 @@ resource demoGateway 'Applications.Core/gateways@2022-03-15-privatepreview' = { } } } - - -resource demoContainer 'Applications.Core/containers@2022-03-15-privatepreview' = { - name: 'demo-container' - location: location - properties: { - application: demoApplication.id - container: { - image: magpieimage - ports: { - web: { - containerPort: 3000 - } - } - readinessProbe: { - kind: 'httpGet' - containerPort: 3000 - path: '/healthz' - } - } - } -}