Sha256: 8cb7acebc2c83793ac3a5c460bdeb23930abf01a86851622e7b5fb0196761fff
Contents?: true
Size: 1.16 KB
Versions: 8
Compression:
Stored size: 1.16 KB
Contents
template "api-web-prod" do source "web" variables( ami: "ami-123", instance_type: "t2.small", port: "80", high_threshold: "15", high_periods: "4", low_threshold: "5", low_periods: "10", max_size: "24", min_size: "6", down_adjustment: "-3", up_adjustment: "3", ssl_cert: "arn:aws:iam::12345:server-certificate/wildcard" ) end template "api-worker-prod" do source "web" variables( ami: "ami-123", instance_type: "t2.small", port: "80", high_threshold: "15", high_periods: "4", low_threshold: "5", low_periods: "10", max_size: "24", min_size: "6", down_adjustment: "-3", up_adjustment: "3", user_data_script: "ruby_script.rb", ssl_cert: "arn:aws:iam::12345:server-certificate/wildcard" ) end template "api-redis-prod" do source "db" variables( ami: "ami-456", instance_type: "t2.small", port: "80", volume_size: "20", availability_zone: "us-east-1e" ) end template "parent/db-stack" do source "db" variables( ami: "ami-456", instance_type: "t2.small", port: "80", volume_size: "20", availability_zone: "us-east-1e" ) end
Version data entries
8 entries across 8 versions & 1 rubygems