Sha256: ff58763e8b8f2bef1380bb2a77e65d3c2ef99518fac9e0d133608ea20086a6fc
Contents?: true
Size: 686 Bytes
Versions: 37
Compression:
Stored size: 686 Bytes
Contents
# Example ufo/variables/base.rb # More info on how variables work: http://ufoships.com/docs/variables/ @image = helper.full_image_name # includes the git sha tongueroo/demo-ufo:ufo-[sha]. @environment = helper.env_file(".env") <% if @options[:launch_type] == "fargate" -%> # Ensure that the cpu and memory values are a supported combination by Fargate. # More info: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-cpu-memory-error.html" <% end -%> @cpu = 256 @memory = 512 @memory_reservation = 512 <% if @execution_role_arn_input -%> @execution_role_arn = "<%= @execution_role_arn_input %>" <% else -%> # required for fargate # @execution_role_arn = "..." <% end -%>
Version data entries
37 entries across 37 versions & 1 rubygems