Skip to content

Commit

Permalink
fix:change in count condition (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw authored Feb 20, 2024
1 parent eb2c666 commit 8d2adca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: 'pre-commit check errors'
uses: pre-commit/[email protected].0
uses: pre-commit/[email protected].1
continue-on-error: true

- name: 'pre-commit fix erros'
uses: pre-commit/[email protected].0
uses: pre-commit/[email protected].1
continue-on-error: true

- name: 'push readme'
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "dns_name" {
value = azurerm_bastion_host.main[0].dns_name
value = try(azurerm_bastion_host.main[0].dns_name, null)
description = "Specifies the name of the bastion host"
}

output "id" {
value = azurerm_bastion_host.main[0].id
value = try(azurerm_bastion_host.main[0].id, null)
description = "Specifies the resource id of the bastion host"
}

0 comments on commit 8d2adca

Please sign in to comment.