Skip to main content

services_test_keys

Creates, updates, deletes, gets or lists a services_test_keys resource.

Overview

Nameservices_test_keys
TypeResource
Idazure.spring_apps.services_test_keys

Fields

NameDatatypeDescription
enabledbooleanIndicates whether the test endpoint feature enabled or not
primaryKeystringPrimary key
primaryTestEndpointstringPrimary test endpoint
secondaryKeystringSecondary key
secondaryTestEndpointstringSecondary test endpoint

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, serviceName, subscriptionIdList test keys for a Service.

SELECT examples

List test keys for a Service.

SELECT
enabled,
primaryKey,
primaryTestEndpoint,
secondaryKey,
secondaryTestEndpoint
FROM azure.spring_apps.services_test_keys
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serviceName = '{{ serviceName }}'
AND subscriptionId = '{{ subscriptionId }}';