1. 26 May, 2015 13 commits
  2. 22 May, 2015 6 commits
  3. 21 May, 2015 14 commits
  4. 20 May, 2015 5 commits
  5. 19 May, 2015 2 commits
    • Merge pull request #2020 from edx/jibsheet/multiple-elbs · 682fbf54
      Support creating 0-many ELBs at once from a service configuration
      Kevin Falcone committed
    • Support creating multiple elbs · c6a499bc
      elbs:
        - name: "{{ e_d_c }}-public"
          scheme: "internet-facing"
        - name: "{{ e_d_c }}-internal"
          scheme: "internal"
      
      If an internal elb exists, we need private subnets
      
      This is functionally identical to the service_subnets and assumes you've
      defined a private_elb_subnet_{1,2} similar to the existing
      public_subnet_{1,2} variables (and requires code added in edx-secure's edx_service)
      
      The subnet if statement is horride, but registering that variable as a
      temporary global wasn't working.
      
      Services might not have elbs, might only have public ELBs or might have
      internal ELBs with no subnets configured.  Try to catch these cases
      before ansible/ec2 give a less useful error message.
      Kevin Falcone committed