Resource: aws_ecs_account_setting_default

Provides an ECS default account setting for a specific ECS Resource name within a specific region. More information can be found on the ECS Developer Guide.

Example Usage

resource "aws_ecs_account_setting_default" "test" {
  name  = "taskLongArnFormat"
  value = "enabled"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import ECS Account Setting defaults using the name. For example:

import {
  to = aws_ecs_account_setting_default.example
  id = "taskLongArnFormat"
}

Using terraform import, import ECS Account Setting defaults using the name. For example:

% terraform import aws_ecs_account_setting_default.example taskLongArnFormat