vars.yml.sample 771 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. vm_prefix: "ci_test"
  3. type: aws
  4. aws_user: "ec2-user"
  5. python: "/usr/bin/python"
  6. aws_key: "libra"
  7. aws_region: "us-east-1"
  8. aws_cluster_id: "ci"
  9. # us-east-1d
  10. aws_subnet: "subnet-cf57c596"
  11. aws_ami_tags:
  12. "tag:operating_system": "rhel"
  13. "tag:image_stage": "base"
  14. "tag:ready": "yes"
  15. aws_instances:
  16. - name: "{{ vm_prefix }}-master"
  17. ansible_groups:
  18. - masters
  19. - etcd
  20. - nodes
  21. aws_flavor: t2.large
  22. aws_security_group: public
  23. node_group: "node-config-all-in-one"
  24. # Use custom AMI tags
  25. # aws_ami_tags:
  26. # operating_system: "rhel"
  27. # image_stage: "base"
  28. # ready: "yes"
  29. # Use custom AMI
  30. #aws_image: "ami-70e8fd66"
  31. # Attach custom volumes
  32. #aws_volumes:
  33. # - device_name: /dev/sdb
  34. # volume_size: 50
  35. # delete_on_termination: yes