vw_iac_profiles
Creates, updates, deletes, gets or lists a vw_iac_profiles resource.
Overview
| Name | vw_iac_profiles |
| Type | View |
| Id | azure_extras.developer_hub.vw_iac_profiles |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
etag as etag,
JSON_EXTRACT(properties, '$.githubProfile') as "github_profile",
JSON_EXTRACT(properties, '$.terraformProfile') as "terraform_profile",
JSON_EXTRACT(properties, '$.stages') as "stages",
JSON_EXTRACT(properties, '$.templates') as "templates",
subscriptionId,
resourceGroupName,
iacProfileName
FROM azure_extras.developer_hub.iac_profiles
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
etag as etag,
json_extract_path_text(properties, '$.githubProfile') as "github_profile",
json_extract_path_text(properties, '$.terraformProfile') as "terraform_profile",
json_extract_path_text(properties, '$.stages') as "stages",
json_extract_path_text(properties, '$.templates') as "templates",
subscriptionId,
resourceGroupName,
iacProfileName
FROM azure_extras.developer_hub.iac_profiles
WHERE subscriptionId = 'replace-me';