Skip to content

Commit

Permalink
Merge pull request #5 from terrymandin/temandin-test-fixes
Browse files Browse the repository at this point in the history
lint fixes
  • Loading branch information
terrymandin authored May 8, 2024
2 parents 6ca66ee + 0bbd3a6 commit c0aa5c1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module "disk" {
# kind = "CanNotDelete"
#}
// Example role assignment
# Example role assignment
role_assignments = {
role_assignment = {
principal_id = data.azurerm_client_config.current.object_id
Expand Down
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module "disk" {
# kind = "CanNotDelete"
#}

// Example role assignment
# Example role assignment
role_assignments = {
role_assignment = {
principal_id = data.azurerm_client_config.current.object_id
Expand Down
4 changes: 2 additions & 2 deletions examples/encrypted-disk/dependencies.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "azurerm_disk_access" "this" {
location = azurerm_resource_group.this.location
name = replace(azurerm_resource_group.this.name, "rg", "da") // Naming module does not support disk access
name = replace(azurerm_resource_group.this.name, "rg", "da") # Naming module does not support disk access
resource_group_name = azurerm_resource_group.this.name
tags = local.tags
}
Expand Down Expand Up @@ -29,7 +29,7 @@ module "key_vault" {
bypass = "AzureServices"
}

// Role recommended in this article: https://learn.microsoft.com/en-us/azure/virtual-machines/disk-encryption#full-control-of-your-keys
# Role recommended in this article: https://learn.microsoft.com/en-us/azure/virtual-machines/disk-encryption#full-control-of-your-keys
role_assignments = {
key_vault_administrator = {
role_definition_id_or_name = "Key Vault Administrator"
Expand Down
2 changes: 1 addition & 1 deletion examples/private-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "azurerm_private_dns_zone" "this" {
resource "azurerm_disk_access" "this" {
location = azurerm_resource_group.this.location
name = replace(azurerm_resource_group.this.name, "rg", "da") // Naming module does not support disk access
name = replace(azurerm_resource_group.this.name, "rg", "da") # Naming module does not support disk access
resource_group_name = azurerm_resource_group.this.name
tags = local.tags
}
Expand Down
2 changes: 1 addition & 1 deletion examples/private-endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "azurerm_private_dns_zone" "this" {

resource "azurerm_disk_access" "this" {
location = azurerm_resource_group.this.location
name = replace(azurerm_resource_group.this.name, "rg", "da") // Naming module does not support disk access
name = replace(azurerm_resource_group.this.name, "rg", "da") # Naming module does not support disk access
resource_group_name = azurerm_resource_group.this.name
tags = local.tags
}
Expand Down

0 comments on commit c0aa5c1

Please sign in to comment.