Guest User

Untitled

a guest
Jul 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. resource "azurerm_virtual_machine" "myterraformvm" {
  2. count = 10
  3. name = "testvm10"
  4. location = "northeu"
  5. resource_group_name = "Testing"
  6.  
  7. storage_image_reference {
  8. publisher = "Canonical"
  9. offer = "UbuntuServer"
  10. sku = "16.04.0-LTS"
  11. version = "latest"
  12. }
  13.  
  14. os_profile {
  15. computer_name = "testvm10"
  16. admin_username = "azterraform"
  17. admin_password = "mysecurepassword"
  18. }
  19.  
  20. os_profile_linux_config {
  21. disable_password_authentication = false
  22. }
  23. }
Add Comment
Please, Sign In to add comment