ecs

BrynardSecurity-terraform/ecs/aws

Terraform Module HCL AWS ⏱ stale 3y 10mo

Terraform module which creates AWS ECS resources πŸ‡ΊπŸ‡¦

Install

module "ecs" {
source = "BrynardSecurity-terraform/ecs/aws"
version = "3.5.0"
}
⭐ Source on GitHub πŸ“¦ Registry page

README

AWS Elastic Container Service (ECS) Terraform module Terraform module which creates ECS resources on AWS. This module focuses purely on ECS and nothing else. Therefore only these resources can be created with this module: - ECS - IAM However, having said the above to have a proper ECS cluster up and running multiple resources are needed. In most cases creating these resources is heavily opinionated and or context-bound. That is why this module does not create these resources. But you still need them to have a production ready environment. Therefore the example area shows how to create everything needed for a production environment. Usage ``hcl module "ecs" { source = "terraform-aws-modules/ecs/aws" name = "my-ecs" container_insights = true capacity_providers = ["FARGATE", "FARGATE_SPOT"] d

Inputs (6)

NameTypeDescriptionDefault
namestringName to be used on all the resources as identifier, also the name of the ECS clu required
default_capacity_provider_strategylist(map(any))The capacity provider strategy to use by default for the cluster. Can be one or []
container_insightsboolControls if ECS Cluster has container insights enabledfalse
tagsmap(string)A map of tags to add to ECS Cluster{}
create_ecsboolControls if ECS should be createdtrue
capacity_providerslist(string)List of short names of one or more capacity providers to associate with the clus[]

Outputs (3)

ecs_cluster_id β€” ID of the ECS Cluster
ecs_cluster_arn β€” ARN of the ECS Cluster
ecs_cluster_name β€” The name of the ECS cluster

Resources (2)

aws_ecs_clusteraws_ecs_cluster_capacity_providers

Details

FrameworkTerraform Module
LanguageHCL
Version3.5.0
Cloud AWS
β˜… Stars0
Forks0
Total downloads3.7k
Inputs6
Outputs3
Resources2
Examples2
Submodules1
LicenseApache-2.0
NamespaceBrynardSecurity-terraform
Updated