vars.yml.sample 991 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. vm_prefix: "ci_test"
  3. #aws_use_auto_terminator is set to True by default, as rh-dev account doesn't have permission
  4. # to terminate instances. These should be stopped and renamed to include 'terminate' instead
  5. #aws_use_auto_terminator: false
  6. type: aws
  7. aws_user: "ec2-user"
  8. python: "/usr/bin/python"
  9. aws_key: "libra"
  10. aws_region: "us-east-1"
  11. aws_cluster_id: "ci"
  12. # us-east-1d
  13. aws_subnet: "subnet-cf57c596"
  14. aws_ami_tags:
  15. "tag:operating_system": "rhel"
  16. "tag:image_stage": "base"
  17. "tag:ready": "yes"
  18. aws_instances:
  19. - name: "{{ vm_prefix }}-master"
  20. ansible_groups:
  21. - masters
  22. - etcd
  23. - nodes
  24. aws_flavor: t2.large
  25. aws_security_group: public
  26. node_group: "node-config-all-in-one"
  27. # Use custom AMI tags
  28. # aws_ami_tags:
  29. # operating_system: "rhel"
  30. # image_stage: "base"
  31. # ready: "yes"
  32. # Use custom AMI
  33. #aws_image: "ami-70e8fd66"
  34. # Attach custom volumes
  35. #aws_volumes:
  36. # - device_name: /dev/sdb
  37. # volume_size: 50
  38. # delete_on_termination: yes