diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..b2dadf3 --- /dev/null +++ b/.editorconfig @@ -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 diff --git a/.gitignore b/.gitignore index 2cbc1ad..d72ec4d 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ crash.log # For built boxes *.box + +# IDEs +.idea/ diff --git a/azure.pkr.hcl b/azure.pkr.hcl index 6b3e576..cde77f8 100644 --- a/azure.pkr.hcl +++ b/azure.pkr.hcl @@ -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 @@ -73,4 +73,4 @@ source azure-arm ubuntu-x86-64 { # vm_size = "Standard_D2ps_v5" # # allowed_inbound_ip_addresses = [var.my_ip_address] -#} \ No newline at end of file +#} diff --git a/build.pkr.hcl b/build.pkr.hcl index b04053a..71d7a4c 100644 --- a/build.pkr.hcl +++ b/build.pkr.hcl @@ -28,5 +28,4 @@ build { ] inline_shebang = "/bin/sh -x" } - -} \ No newline at end of file +} diff --git a/plugins.pkr.hcl b/plugins.pkr.hcl index ac6678b..7f50735 100644 --- a/plugins.pkr.hcl +++ b/plugins.pkr.hcl @@ -5,4 +5,4 @@ packer { version = ">=2.0.0" } } -} \ No newline at end of file +} diff --git a/variables.pkr.hcl b/variables.pkr.hcl index d251399..82640b4 100644 --- a/variables.pkr.hcl +++ b/variables.pkr.hcl @@ -67,4 +67,3 @@ variable os_disk_size_gb { type = number default = 30 } -