Guest User

Untitled

a guest
Feb 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. provider "azurerm"
  2. {
  3. }
  4. resource "null_resource" "test"
  5. {
  6.  
  7. provisioner "file"
  8. {
  9. connection
  10. {
  11. type = "winrm"
  12. user = ""
  13. password = ""
  14. host="terraform.eastus.cloudapp.azure.com"
  15. port="3389"
  16. timeout = "20m"
  17. }
  18. source = "D:\jaish\output.txt"
  19. destination = "D:\output.txt"
  20.  
  21. }
  22. }
Add Comment
Please, Sign In to add comment