variables.include 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. {###################################################}
  2. {# Required Jinja Variables #}
  3. {# Most users will need to customize these values. #}
  4. {###################################################}
  5. {# AWS Key Pair Name #
  6. {# The name of the AWS Key Pair as identified in AWS IAM #}
  7. {% set AWS_Key_Pair_Name = "Fred-IO" %}
  8. {# Private Key File #
  9. {# The private key paired with the above IAM keyname #}
  10. {% set Private_Key_File = "~/.ssh/id_rsa" %}
  11. {# Domain Name #}
  12. {# The domain name. Must be hosted in Route53. #}
  13. {% set Domain_Name = "monkeybox.org" %}
  14. {# Domain Zone ID (Route53) #}
  15. {# The Route53 Zone ID #}
  16. {% set Domain_Zone_ID = "Z49JKEQC08KW8" %}
  17. {# Trust Source IPs in CIDR #}
  18. {# These IPs will have direct access to instances. Should include #}
  19. {# the terraform master's IP address, as well as your workstation #}
  20. {# or home IP. Can contain multiple entries. #}
  21. {% set Trusted_CIDR = '["99.56.213.129/32"]' %}
  22. {###########################################}
  23. {# Optional Variables #}
  24. {# Default values are fine for most users. #}
  25. {###########################################}
  26. {# AWS Region #}
  27. {% set AWS_Region = "us-east-2" %}