Skip to content

Commit

Permalink
Fix lint issue.
Browse files Browse the repository at this point in the history
Make version restriction more flexible.
  • Loading branch information
lonegunmanb committed Jul 13, 2022
1 parent f253727 commit d79c2d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/fixture/disk_encryption_set.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ locals {

resource "azurerm_key_vault" "des_vault" {
name = "${random_string.key_vault_prefix.result}-des-keyvault"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
tenant_id = data.azurerm_client_config.current.tenant_id
sku_name = "premium"
soft_delete_retention_days = 7
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ terraform {
}
curl = {
source = "anschoewe/curl"
version = "1.0.2"
version = ">=1.0.2"
}
}
}
Expand Down

0 comments on commit d79c2d3

Please sign in to comment.