Skip to content

Commit

Permalink
Minor repo tweaks
Browse files Browse the repository at this point in the history
- Added basic .editorconfig
- Ignored IntelliJ system files in Git
- Fixed final new lines
  • Loading branch information
mihailradkov committed Oct 30, 2023
1 parent 5729a2c commit be97e8f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ crash.log

# For built boxes
*.box

# IDEs
.idea/
4 changes: 2 additions & 2 deletions azure.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ source azure-arm ubuntu-x86-64 {
allowed_inbound_ip_addresses = [var.my_ip_address]
}

#TODO Not yet supported by Packer https://github.com/hashicorp/packer/issues/12188#issuecomment-1380736642
#TODO Not yet supported by Packer https://github.com/hashicorp/packer/issues/12188#issuecomment-1380736642
#source azure-arm ubuntu-arm64 {
# client_id = var.client_id
# client_secret = var.client_secret
Expand Down Expand Up @@ -73,4 +73,4 @@ source azure-arm ubuntu-x86-64 {
# vm_size = "Standard_D2ps_v5"
#
# allowed_inbound_ip_addresses = [var.my_ip_address]
#}
#}
3 changes: 1 addition & 2 deletions build.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,4 @@ build {
]
inline_shebang = "/bin/sh -x"
}

}
}
2 changes: 1 addition & 1 deletion plugins.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ packer {
version = ">=2.0.0"
}
}
}
}
1 change: 0 additions & 1 deletion variables.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,3 @@ variable os_disk_size_gb {
type = number
default = 30
}

0 comments on commit be97e8f

Please sign in to comment.