Guest User

Untitled

a guest
Jan 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. # Softlayer username
  2. variable slusername {}
  3.  
  4. # SoftLayer API key
  5. variable slapikey {}
  6.  
  7. # The target operating system for the VRA
  8.  
  9. variable os {
  10. default = "OS_VYATTA_5600_5_X_UP_TO_1GBPS_SUBSCRIPTION_EDITION_64_BIT"
  11. }
  12.  
  13. # The amount of memory for the VRA
  14. variable vra_memory {
  15. default = 16384
  16. }
  17.  
  18. # The datacenter to deploy to
  19. variable datacenter {
  20. default = "dal13"
  21. }
  22.  
  23. # [OPTIONAL] Uncomment to set the private vlan to deploy the VRA on to. If you uncomment this
  24. # you also need to uncomment the line `private_vlan_id` in the `main.tf` file.
  25. #variable priv_vlan {
  26. # default = YOUR_PRIVATE_VLAN_ID
  27. #}
  28.  
  29. # [OPTIONAL] Uncomment to set the public vlan to deploy the VRA on to. If you uncomment this
  30. # you also need to uncomment the line `public_vlan_id` in the `main.tf` file.
  31. #variable pub_vlan {
  32. # default = YOUR_PUBLIC_VLAN_ID
  33. #}
  34.  
  35. # The domain name for the VRA
  36. variable domainname {
  37. default = "YOURDOMAIN.COM"
Add Comment
Please, Sign In to add comment