Advertisement
Guest User

Untitled

a guest
Aug 15th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. ec2:
  2.  
  3. # Set up the location of the salt master
  4. #
  5. minion:
  6. master: 10.171.16.30
  7.  
  8. # Specify whether to use public or private IP for deploy script.
  9. #
  10. # Valid options are:
  11. # private_ips - The salt-master is also hosted with EC2
  12. # public_ips - The salt-master is hosted outside of EC2
  13. #
  14. ssh_interface: private_ips
  15.  
  16. # Set the EC2 access credentials (see below)
  17. #
  18. id: AKIAJXBCKDRSU5TIDDUA
  19. key: 'EyzOj7+XEL1+kv32tUkp3dygy84FBwSYhH4Zn15+'
  20.  
  21. # Make sure this key is owned by root with permissions 0400.
  22. #
  23. private_key: /etc/salt/saltstack.pem
  24. keyname: saltstack
  25. securitygroup: default
  26.  
  27. # Optionally configure default region
  28. #
  29. location: us-east-1
  30. availability_zone: us-east-1c
  31.  
  32. # Configure which user to use to run the deploy script. This setting is
  33. # dependent upon the AMI that is used to deploy. It is usually safer to
  34. # configure this individually in a profile, than globally. Typical users
  35. # are:
  36. #
  37. # Amazon Linux -> ec2-user
  38. # RHEL -> ec2-user
  39. # CentOS -> ec2-user
  40. # Ubuntu -> ubuntu
  41. #
  42. ssh_username: ubuntu
  43.  
  44. provider: ec2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement