Resource: aws_appconfig_deployment_strategy

Provides an AppConfig Deployment Strategy resource.

Example Usage

resource "aws_appconfig_deployment_strategy" "example" {
  name                           = "example-deployment-strategy-tf"
  description                    = "Example Deployment Strategy"
  deployment_duration_in_minutes = 3
  final_bake_time_in_minutes     = 4
  growth_factor                  = 10
  growth_type                    = "LINEAR"
  replicate_to                   = "NONE"

  tags = {
    Type = "AppConfig Deployment Strategy"
  }
}

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 AppConfig Deployment Strategies using their deployment strategy ID. For example:

import {
  to = aws_appconfig_deployment_strategy.example
  id = "11xxxxx"
}

Using terraform import, import AppConfig Deployment Strategies using their deployment strategy ID. For example:

% terraform import aws_appconfig_deployment_strategy.example 11xxxxx