├── .gitignore ├── README.md ├── images └── select_template.png ├── kong.yml └── templates ├── kong-elb-cassandra-user-vpc-optional-hvm.template ├── kong-elb-cassandra-user-vpc-optional-pv.template ├── kong-elb-dbless-vpc-optional-hvm.template ├── kong-elb-dbless-vpc-optional-pv.template ├── kong-elb-postgres-optional-vpc-new-hvm.template ├── kong-elb-postgres-optional-vpc-optional-hvm.template └── kong-elb-postgres-optional-vpc-optional-pv.template /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/README.md -------------------------------------------------------------------------------- /images/select_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/images/select_template.png -------------------------------------------------------------------------------- /kong.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/kong.yml -------------------------------------------------------------------------------- /templates/kong-elb-cassandra-user-vpc-optional-hvm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-cassandra-user-vpc-optional-hvm.template -------------------------------------------------------------------------------- /templates/kong-elb-cassandra-user-vpc-optional-pv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-cassandra-user-vpc-optional-pv.template -------------------------------------------------------------------------------- /templates/kong-elb-dbless-vpc-optional-hvm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-dbless-vpc-optional-hvm.template -------------------------------------------------------------------------------- /templates/kong-elb-dbless-vpc-optional-pv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-dbless-vpc-optional-pv.template -------------------------------------------------------------------------------- /templates/kong-elb-postgres-optional-vpc-new-hvm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-postgres-optional-vpc-new-hvm.template -------------------------------------------------------------------------------- /templates/kong-elb-postgres-optional-vpc-optional-hvm.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-postgres-optional-vpc-optional-hvm.template -------------------------------------------------------------------------------- /templates/kong-elb-postgres-optional-vpc-optional-pv.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/kong-dist-cloudformation/HEAD/templates/kong-elb-postgres-optional-vpc-optional-pv.template --------------------------------------------------------------------------------