Skip to content

mmgcarlos/tf_ecs_task_definition

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tf_ecs_task_definition

Build Status

This module creates a basic ECS Task Definition.

Usage

module "taskdef" {
    source = "github.com/mergermarket/tf_ecs_task_definition"

    family = "live-service-name"
    container_definitions = [
        <<END
{
    ...container definition...
}
END
    ]

    volume = {
        name = 'data'
        host_path = '/mnt/data'
    }
}

API

Parameters

Outputs

  • arn - the ARN of the task definition.

About

Simple ECS Task Definition module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 62.9%
  • HCL 27.7%
  • Dockerfile 6.3%
  • Shell 3.1%