You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/wiki/Settings.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,16 +34,17 @@ The following configuration values can be modified within the `settings.json` fi
34
34
| 22 | SkipResourceGroup | Do not include Resource Groups in pull |`"Core.SkipResourceGroup": false`|
35
35
| 23 | SkipResourceType | Skip specific [Resource Types](https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-providers-and-types) (only targets Resource Group scoped resources) |`"Core.SkipResourceType": ["Microsoft.VSOnline/plans"]`|
36
36
| 24 | SkipRole | Do not include Role types in pull |`"Core.SkipRole": false`|
37
-
| 25 | State | Folder to store AzOpsState artefact, defaults to `root`|`"Core.State: "/root"`|
38
-
| 26 | SubscriptionsToIncludeChildResource | Filter which Subscription IDs should include child resources in pull |`"Core.SubscriptionsToIncludeChildResource": ["*"]`|
39
-
| 27 | SubscriptionsToIncludeResourceGroups | Filter which Subscription IDs should include Resource Groups in pull [Logic Updated in v2.0.0](https://github.com/Azure/AzOps/releases/tag/2.0.0)|`"Core.SubscriptionsToIncludeResourceGroups": ["*"]`|
| 29 | AllowMultipleTemplateParameterFiles | Control multiple parameter file behaviour. *Not recommended to change*|`"Core.AllowMultipleTemplateParameterFiles": false`|
42
-
| 30 | DeployAllMultipleTemplateParameterFiles | Control base template deployment behaviour with changes and un-changed multiple corresponding parameter files. |`"Core.DeployAllMultipleTemplateParameterFiles": false`|
| 32 | ParallelDeployMultipleTemplateParameterFiles | Control parallel deployment of MultipleTemplateParameterFiles behaviour |`"Core.ParallelDeployMultipleTemplateParameterFiles": false`|
45
-
| 33 | ThrottleLimit | Value declaring number of parallel threads. [Read more](https://github.com/azure/azops/wiki/performance-considerations)|`"Core.ThrottleLimit": 5`|
46
-
| 34 | WhatifExcludedChangeTypes | Exclude specific change types from WhatIf operations |`"Core.WhatifExcludedChangeTypes": ["NoChange","Ignore"]`|
37
+
| 25 | SkipSubscription | Filter which Subscription IDs should be excluded from pull |`"Core.SkipSubscription": ["*"]`|
38
+
| 26 | State | Folder to store AzOpsState artefact, defaults to `root`|`"Core.State: "/root"`|
39
+
| 27 | SubscriptionsToIncludeChildResource | Filter which Subscription IDs should include child resources in pull |`"Core.SubscriptionsToIncludeChildResource": ["*"]`|
40
+
| 28 | SubscriptionsToIncludeResourceGroups | Filter which Subscription IDs should include Resource Groups in pull [Logic Updated in v2.0.0](https://github.com/Azure/AzOps/releases/tag/2.0.0)|`"Core.SubscriptionsToIncludeResourceGroups": ["*"]`|
| 30 | AllowMultipleTemplateParameterFiles | Control multiple parameter file behaviour. *Not recommended to change*|`"Core.AllowMultipleTemplateParameterFiles": false`|
43
+
| 31 | DeployAllMultipleTemplateParameterFiles | Control base template deployment behaviour with changes and un-changed multiple corresponding parameter files. |`"Core.DeployAllMultipleTemplateParameterFiles": false`|
| 33 | ParallelDeployMultipleTemplateParameterFiles | Control parallel deployment of MultipleTemplateParameterFiles behaviour |`"Core.ParallelDeployMultipleTemplateParameterFiles": false`|
46
+
| 34 | ThrottleLimit | Value declaring number of parallel threads. [Read more](https://github.com/azure/azops/wiki/performance-considerations)|`"Core.ThrottleLimit": 5`|
47
+
| 35 | WhatifExcludedChangeTypes | Exclude specific change types from WhatIf operations |`"Core.WhatifExcludedChangeTypes": ["NoChange","Ignore"]`|
Set-PSFConfig-Module AzOps -Name Core.SkipResourceGroup -Value $false-Initialize -Validation bool -Description 'Global flag to indicate whether resource group should be discovered or not'
26
26
Set-PSFConfig-Module AzOps -Name Core.SkipResourceType -Value @('Microsoft.VSOnline/plans','Microsoft.PowerPlatform/accounts','Microsoft.PowerPlatform/enterprisePolicies') -Initialize -Validation stringarray -Description 'Global flag to skip discovery of specific Resource types.'
Set-PSFConfig-Module AzOps -Name Core.SkipSubscription -Value @('*') -Initialize -Validation stringarray -Description 'Skip Subscription ID that matches the filter.'
28
29
Set-PSFConfig-Module AzOps -Name Core.State -Value (Join-Path$pwd-ChildPath "root") -Initialize -Validation string -Description 'Folder to store AzOpsState artefact'
29
30
Set-PSFConfig-Module AzOps -Name Core.SubscriptionsToIncludeChildResource -Value @('*') -Initialize -Validation stringarray -Description 'Requires SkipResourceGroup, SkipResource and SkipChildResource to be false. Subscription ID that matches the filter.'
30
31
Set-PSFConfig-Module AzOps -Name Core.SubscriptionsToIncludeResourceGroups -Value @('*') -Initialize -Validation stringarray -Description 'Requires SkipResourceGroup to be false. Subscription ID that matches the filter.'
0 commit comments