Skip to content

Commit

Permalink
UpdateStringAndMd
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefajers authored Dec 8, 2023
1 parent a8fc2ef commit 208f426
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/wiki/Frequently-Asked-Questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ This article answers frequently asked questions relating to AzOps.
- [**I want to discover a specific resource type in specific resource group in one specific subscription**](#i-want-to-discover-a-specific-resource-type-in-specific-resource-group-in-one-specific-subscription)
- [**I want to discover and manage several Azure Firewall Policy's and rule collections spread out across several resource groups and subscriptions**](#i-want-to-discover-and-manage-several-azure-firewall-policys-and-rule-collections-spread-out-across-several-resource-groups-and-subscriptions)
- [Push scenarios and settings](#push-scenarios-and-settings)
- [**I want to have multiple different deployments at scope using the same template file but different parameter files**](#i-want-to-have-multiple-different-deployments-at-scope-using-the-same-template-file-but-different-parameter-files)
- [**I am getting: Missing defaultValue and no parameter file found, skip deployment**](#i-am-getting-missing-defaultvalue-and-no-parameter-file-found-skip-deployment)
- [**I want to have multiple different deployments at scope using the same template file but different parameter files**](#i-want-to-have-multiple-different-deployments-at-scope-using-the-same-template-file-but-different-parameter-files)
- [**I am getting: Missing defaultValue and no parameter file found, skip deployment**](#i-am-getting-missing-defaultvalue-and-no-parameter-file-found-skip-deployment)

## Subscriptions or resources not showing up in repository

Expand Down Expand Up @@ -156,7 +156,7 @@ Template files listed in the order file will be deployed in the order specified
### **I want to have multiple different deployments at scope using the same template file but different parameter files**

When using custom deployment templates, can I avoid the pattern of duplicating the `.bicep` file for each `parameter` file below?
```
```bash
scope/
├── template-a.bicep
├── template-a.bicepparam
Expand All @@ -172,8 +172,8 @@ Yes, ensure the following setting combinations are applied (replace `x` with you

"Core.MultipleTemplateParameterFileSuffix": ".x"
```
AzOps module will evaluate each parameter file individually and try to find base template by matching (*regex*) according to `MultipleTemplateParameterFileSuffix` pattern identifier.
```
AzOps module will evaluate each parameter file individually and try to find base template by matching (*regular expression*) according to `MultipleTemplateParameterFileSuffix` pattern identifier.
```bash
scope/
├── template.x1.bicepparam
├── template.x2.bicepparam
Expand Down
1 change: 1 addition & 0 deletions src/localized/en-us/Strings.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@
'Initialize-AzOpsEnvironment.Processing' = 'Processing AzOps environment' #
'Initialize-AzOpsEnvironment.Processing.Completed' = 'AzOps environment initialization concluded' #
'Initialize-AzOpsEnvironment.ThrottleLimit.Adjustment' = 'Adjusting AzOps.Core.ThrottleLimit from {0} to 5 due to available CPU Cores ({1}) to ensure reliable and performant pipeline execution. For further details, refer to: https://github.com/azure/azops/wiki/performance-considerations' # $throttleLimit, $cpuCores
'Initialize-AzOpsEnvironment.MultipleTemplateParameterFileSuffix.Adjustment' = 'Adjusting AzOps.Core.MultipleTemplateParameterFileSuffix from ({0}) to ({1}) to ensure reliable file matching. To avoid this warning update your MultipleTemplateParameterFileSuffix setting to startwith a [.]' # AzOps.Core.MultipleTemplateParameterFileSuffix, $updateMultipleTemplateParameterFileSuffix
'Initialize-AzOpsEnvironment.SkipCustomJqTemplate.True' = 'AzOps.Core.SkipCustomJqTemplate is true, using module defaults' #
'Initialize-AzOpsEnvironment.CustomJqTemplatePath' = 'AzOps.Core.CustomJqTemplatePath {0}' # $customJqTemplatePath
'Initialize-AzOpsEnvironment.CustomJqTemplatePath.PathNotFound' = 'The path specified in AzOps.Core.CustomJqTemplatePath {0} was not found, reverting to module defaults' # $customJqTemplatePath
Expand Down

0 comments on commit 208f426

Please sign in to comment.