Sha256: 5e4b7db0eec7fcb03d117957ba038bc8c1cf33093d7c06366e53a70f91c68754
Contents?: true
Size: 729 Bytes
Versions: 8
Compression:
Stored size: 729 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") @secrets = helper.secrets_file(".secrets") <% 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
8 entries across 8 versions & 1 rubygems