Skip to content

Commit

Permalink
Merge pull request #3 from clouddrove/1.0.0
Browse files Browse the repository at this point in the history
fix name type
  • Loading branch information
d4kverma committed Dec 12, 2022
2 parents 03d3c80 + fcf4390 commit e49e94a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
- name: tflint
uses: reviewdog/action-tflint@master
with:
tflint_version: v0.29.0
github_token: ${{ secrets.GITHUB_TOKEN }}
working_directory: ${{ matrix.directory }}
fail_on_error: 'true'
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module "labels" {
#Description : Terraform resource for resource group.
resource "azurerm_resource_group" "default" {
count = var.enabled ? 1 : 0
name = format("%s-%s-resource-group", var.name, var.environment)
name = format("%s-resource-group", module.labels.id)
location = var.location
tags = module.labels.tags

Expand Down

0 comments on commit e49e94a

Please sign in to comment.