Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredfholgate authored Sep 4, 2024
2 parents 3bcb3e8 + 4ad4c79 commit 7d9d97e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 144 deletions.
111 changes: 0 additions & 111 deletions .github/ISSUE_TEMPLATE/bug_report.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
---
blank_issues_enabled: false
contact_links:
- name: Azure Landing Zones Accelerator Issues
url: https://github.com/Azure/ALZ-PowerShell-Module/issues/new/choose
about: Please raise all issues for the Accelerators over at the Azure/ALZ-PowerShell-Module repository.
31 changes: 0 additions & 31 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

2 changes: 1 addition & 1 deletion templates/complete/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ locals {
const_yml = "yml"
}
locals {
config = (local.config_file_extension == local.const_yaml ?
config = (local.config_file_extension == local.const_yaml || local.config_file_extension == local.const_yml ?
yamldecode(templatefile("${path.module}/${local.config_file_name}", local.config_template_file_variables)) :
jsondecode(templatefile("${path.module}/${local.config_file_name}", local.config_template_file_variables))
)
Expand Down
2 changes: 1 addition & 1 deletion templates/complete_vnext/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ locals {
const_yml = "yml"
}
locals {
config = (local.config_file_extension == local.const_yaml ?
config = (local.config_file_extension == local.const_yaml || local.config_file_extension == local.const_yml ?
yamldecode(templatefile("${path.module}/${local.config_file_name}", local.config_template_file_variables)) :
jsondecode(templatefile("${path.module}/${local.config_file_name}", local.config_template_file_variables))
)
Expand Down

0 comments on commit 7d9d97e

Please sign in to comment.