Sha256: b44f79d14d2d35610062a92133e25b32886b13c301a657c70b36549eeeb32392
Contents?: true
Size: 1.1 KB
Versions: 8
Compression:
Stored size: 1.1 KB
Contents
template "example" template "api-web-prod" do source "web" variables( 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( 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( instance_type: "t2.small", port: "80", volume_size: "20", availability_zone: "us-east-1e" ) end template "parent/db-stack" do source "db" variables( 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