Skip to content

Commit 2d56de9

Browse files
author
dmytro_velychko3
committed
fix: terraform fmt
1 parent ac85590 commit 2d56de9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ resource "azurerm_network_interface" "this" {
3131
resource "azurerm_linux_virtual_machine" "this" {
3232
name = local.virtual_machine_name
3333
resource_group_name = var.resource_group
34-
location = var.location
34+
location = var.location
3535
size = var.virtual_machine.size
3636
admin_username = var.virtual_machine.admin_username
3737
tags = var.tags
3838
network_interface_ids = [azurerm_network_interface.this.id, ]
3939

4040
identity {
41-
type = "SystemAssigned"
41+
type = "SystemAssigned"
4242
}
43-
43+
4444
admin_ssh_key {
4545
username = var.admin_ssh_key.username
4646
public_key = var.admin_ssh_key.public_key

0 commit comments

Comments
 (0)