├── .github ├── dependabot.yml └── workflows │ └── mega-linter.yml ├── .gitignore ├── LICENSE ├── README.md ├── bicep-cicd-examples └── module-tests-with-psrule │ ├── .scripts │ └── bicep-readme.ps1 │ ├── README.md │ ├── azure-devops-psrule-ci.yaml │ ├── bicep │ └── modules │ │ └── storageAccount │ │ ├── .tests │ │ └── storageAccount.tests.bicep │ │ ├── README.md │ │ ├── metadata.json │ │ └── storageAccount.bicep │ ├── github-action-psrule-ci.yaml │ └── ps-rule.yaml └── bicep-examples ├── conditions ├── README.md └── main.bicep ├── consuming-modules ├── README.md ├── modules.bicep └── modules │ └── inline │ └── customModule.bicep ├── dependencies ├── README.md ├── main.bicep └── modules │ ├── appInsights │ └── appinsights.bicep │ ├── privateEndpoint │ ├── private-dns-zone-group │ │ ├── main.bicep │ │ └── version.json │ └── privateEndpoint.bicep │ └── webApp │ ├── appPlan.bicep │ ├── site │ ├── basic-publishing-credentials-policy │ │ ├── main.bicep │ │ └── version.json │ ├── config--appsettings │ │ ├── main.bicep │ │ └── version.json │ ├── config--authsettingsv2 │ │ ├── main.bicep │ │ └── version.json │ ├── hybrid-connection-namespace │ │ └── relay │ │ │ ├── main.bicep │ │ │ └── version.json │ ├── main.bicep │ ├── slot │ │ ├── config--appsettings │ │ │ ├── main.bicep │ │ │ └── version.json │ │ ├── config--authsettingsv2 │ │ │ ├── main.bicep │ │ │ └── version.json │ │ ├── hybrid-connection-namespace │ │ │ └── relay │ │ │ │ ├── main.bicep │ │ │ │ └── version.json │ │ ├── main.bicep │ │ └── version.json │ └── version.json │ └── webApp.bicep ├── deployment-stacks-outputs ├── README.md ├── main.bicep ├── main.bicepparam ├── stacks.bicep └── stacks.bicepparam ├── existing ├── README.md └── main.bicep ├── fail-function ├── README.md ├── storage.bicep ├── storage.bicepparam ├── webApp.bicep └── webApp.bicepparam ├── imports-exports ├── README.md ├── main.bicep ├── main.bicepparam └── shared.bicep ├── lambda-functions ├── README.md ├── bicepconfig.json └── main.bicep ├── loops ├── README.md └── main.bicep ├── metadata-and-descriptions ├── README.md ├── metadata-example.bicep └── metadata-example.bicepparam ├── resource-derived-types ├── README.md ├── main.bicep └── main.bicepparam ├── scoped-deployments ├── README.md ├── management-scope.bicep └── subscription-scope.bicep ├── shared-variable-file-pattern ├── README.md ├── configs │ ├── env-config.json │ ├── naming-config.json │ └── vm-config.json ├── env.bicep ├── namingPrefixes.bicep └── vm.bicep ├── test-framework ├── README.md ├── bicepconfig.json ├── main.bicep ├── main.bicepparam └── tests.bicep ├── user-defined-types ├── README.md ├── main.bicep └── main.bicepparam └── validate ├── README.md ├── bicepconfig.json ├── main.bicep └── main.bicepparam /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/README.md -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/.scripts/bicep-readme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/.scripts/bicep-readme.ps1 -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/README.md -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/azure-devops-psrule-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/azure-devops-psrule-ci.yaml -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/.tests/storageAccount.tests.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/.tests/storageAccount.tests.bicep -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/README.md -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/metadata.json -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/storageAccount.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/bicep/modules/storageAccount/storageAccount.bicep -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/github-action-psrule-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/github-action-psrule-ci.yaml -------------------------------------------------------------------------------- /bicep-cicd-examples/module-tests-with-psrule/ps-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-cicd-examples/module-tests-with-psrule/ps-rule.yaml -------------------------------------------------------------------------------- /bicep-examples/conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/conditions/README.md -------------------------------------------------------------------------------- /bicep-examples/conditions/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/conditions/main.bicep -------------------------------------------------------------------------------- /bicep-examples/consuming-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/consuming-modules/README.md -------------------------------------------------------------------------------- /bicep-examples/consuming-modules/modules.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/consuming-modules/modules.bicep -------------------------------------------------------------------------------- /bicep-examples/consuming-modules/modules/inline/customModule.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/consuming-modules/modules/inline/customModule.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/README.md -------------------------------------------------------------------------------- /bicep-examples/dependencies/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/appInsights/appinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/appInsights/appinsights.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/privateEndpoint/private-dns-zone-group/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/privateEndpoint/private-dns-zone-group/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/privateEndpoint/private-dns-zone-group/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/privateEndpoint/private-dns-zone-group/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/privateEndpoint/privateEndpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/privateEndpoint/privateEndpoint.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/appPlan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/appPlan.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/basic-publishing-credentials-policy/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/basic-publishing-credentials-policy/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/basic-publishing-credentials-policy/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/basic-publishing-credentials-policy/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/config--appsettings/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/config--appsettings/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/config--appsettings/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/config--appsettings/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/config--authsettingsv2/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/config--authsettingsv2/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/config--authsettingsv2/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/config--authsettingsv2/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/hybrid-connection-namespace/relay/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/hybrid-connection-namespace/relay/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/hybrid-connection-namespace/relay/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/hybrid-connection-namespace/relay/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/config--appsettings/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/config--appsettings/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/config--appsettings/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/config--appsettings/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/config--authsettingsv2/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/config--authsettingsv2/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/config--authsettingsv2/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/config--authsettingsv2/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/hybrid-connection-namespace/relay/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/hybrid-connection-namespace/relay/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/hybrid-connection-namespace/relay/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/hybrid-connection-namespace/relay/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/main.bicep -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/slot/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/slot/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/site/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/site/version.json -------------------------------------------------------------------------------- /bicep-examples/dependencies/modules/webApp/webApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/dependencies/modules/webApp/webApp.bicep -------------------------------------------------------------------------------- /bicep-examples/deployment-stacks-outputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/deployment-stacks-outputs/README.md -------------------------------------------------------------------------------- /bicep-examples/deployment-stacks-outputs/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/deployment-stacks-outputs/main.bicep -------------------------------------------------------------------------------- /bicep-examples/deployment-stacks-outputs/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/deployment-stacks-outputs/main.bicepparam -------------------------------------------------------------------------------- /bicep-examples/deployment-stacks-outputs/stacks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/deployment-stacks-outputs/stacks.bicep -------------------------------------------------------------------------------- /bicep-examples/deployment-stacks-outputs/stacks.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/deployment-stacks-outputs/stacks.bicepparam -------------------------------------------------------------------------------- /bicep-examples/existing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/existing/README.md -------------------------------------------------------------------------------- /bicep-examples/existing/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/existing/main.bicep -------------------------------------------------------------------------------- /bicep-examples/fail-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/fail-function/README.md -------------------------------------------------------------------------------- /bicep-examples/fail-function/storage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/fail-function/storage.bicep -------------------------------------------------------------------------------- /bicep-examples/fail-function/storage.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/fail-function/storage.bicepparam -------------------------------------------------------------------------------- /bicep-examples/fail-function/webApp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/fail-function/webApp.bicep -------------------------------------------------------------------------------- /bicep-examples/fail-function/webApp.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/fail-function/webApp.bicepparam -------------------------------------------------------------------------------- /bicep-examples/imports-exports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/imports-exports/README.md -------------------------------------------------------------------------------- /bicep-examples/imports-exports/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/imports-exports/main.bicep -------------------------------------------------------------------------------- /bicep-examples/imports-exports/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/imports-exports/main.bicepparam -------------------------------------------------------------------------------- /bicep-examples/imports-exports/shared.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/imports-exports/shared.bicep -------------------------------------------------------------------------------- /bicep-examples/lambda-functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/lambda-functions/README.md -------------------------------------------------------------------------------- /bicep-examples/lambda-functions/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/lambda-functions/bicepconfig.json -------------------------------------------------------------------------------- /bicep-examples/lambda-functions/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/lambda-functions/main.bicep -------------------------------------------------------------------------------- /bicep-examples/loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/loops/README.md -------------------------------------------------------------------------------- /bicep-examples/loops/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/loops/main.bicep -------------------------------------------------------------------------------- /bicep-examples/metadata-and-descriptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/metadata-and-descriptions/README.md -------------------------------------------------------------------------------- /bicep-examples/metadata-and-descriptions/metadata-example.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/metadata-and-descriptions/metadata-example.bicep -------------------------------------------------------------------------------- /bicep-examples/metadata-and-descriptions/metadata-example.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/metadata-and-descriptions/metadata-example.bicepparam -------------------------------------------------------------------------------- /bicep-examples/resource-derived-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/resource-derived-types/README.md -------------------------------------------------------------------------------- /bicep-examples/resource-derived-types/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/resource-derived-types/main.bicep -------------------------------------------------------------------------------- /bicep-examples/resource-derived-types/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/resource-derived-types/main.bicepparam -------------------------------------------------------------------------------- /bicep-examples/scoped-deployments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/scoped-deployments/README.md -------------------------------------------------------------------------------- /bicep-examples/scoped-deployments/management-scope.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/scoped-deployments/management-scope.bicep -------------------------------------------------------------------------------- /bicep-examples/scoped-deployments/subscription-scope.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/scoped-deployments/subscription-scope.bicep -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/README.md -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/configs/env-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/configs/env-config.json -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/configs/naming-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/configs/naming-config.json -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/configs/vm-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/configs/vm-config.json -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/env.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/env.bicep -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/namingPrefixes.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/namingPrefixes.bicep -------------------------------------------------------------------------------- /bicep-examples/shared-variable-file-pattern/vm.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/shared-variable-file-pattern/vm.bicep -------------------------------------------------------------------------------- /bicep-examples/test-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/test-framework/README.md -------------------------------------------------------------------------------- /bicep-examples/test-framework/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/test-framework/bicepconfig.json -------------------------------------------------------------------------------- /bicep-examples/test-framework/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/test-framework/main.bicep -------------------------------------------------------------------------------- /bicep-examples/test-framework/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/test-framework/main.bicepparam -------------------------------------------------------------------------------- /bicep-examples/test-framework/tests.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/test-framework/tests.bicep -------------------------------------------------------------------------------- /bicep-examples/user-defined-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/user-defined-types/README.md -------------------------------------------------------------------------------- /bicep-examples/user-defined-types/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/user-defined-types/main.bicep -------------------------------------------------------------------------------- /bicep-examples/user-defined-types/main.bicepparam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/user-defined-types/main.bicepparam -------------------------------------------------------------------------------- /bicep-examples/validate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/validate/README.md -------------------------------------------------------------------------------- /bicep-examples/validate/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/validate/bicepconfig.json -------------------------------------------------------------------------------- /bicep-examples/validate/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riosengineer/Bicepify/HEAD/bicep-examples/validate/main.bicep -------------------------------------------------------------------------------- /bicep-examples/validate/main.bicepparam: -------------------------------------------------------------------------------- 1 | using './main.bicep' 2 | 3 | param allowedOriginFqdn = 'app.contoso.com' 4 | --------------------------------------------------------------------------------