Skip to content

Commit b6c0189

Browse files
author
Peter Hauge
committed
Add link to documentation in templates
1 parent 6b15e3e commit b6c0189

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/templates/configs/filter-config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33
/**
4-
* T047: Sample filter configuration template
4+
* Sample filter configuration template
55
* Generates a sample configuration.extractor.yaml file
66
*/
77

88
export function generateFilterConfig(): string {
99
return `# APIM Extract Filter Configuration
1010
# Customize this file to control which resources are extracted
11+
# For full format details and examples, see:
12+
# https://github.com/Azure/apiops-cli/blob/main/docs/guides/filtering-resources.md
1113
1214
# Extract only specific APIs by name
1315
# apis:

src/templates/configs/override-config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33
/**
4-
* T047: Sample override configuration template per environment
4+
* Sample override configuration template per environment
55
* Generates environment-specific configuration.{env}.yaml files
66
*/
77

88
export function generateOverrideConfig(environment: string): string {
99
return `# APIM Override Configuration for ${environment} environment
1010
# Customize resource properties for this specific environment
1111
# All APIOps Toolkit override sections are supported.
12+
# For full format details and examples, see:
13+
# https://github.com/Azure/apiops-cli/blob/main/docs/guides/environment-overrides.md
1214
1315
# Override named values (e.g., API keys, connection strings)
1416
# namedValues:

0 commit comments

Comments
 (0)