You must be logged in to view saved presets
Creates an AppConfig deployment strategy with specified parameters such as deployment duration, bake time, growth factor, and growth type.
resource "aws_appconfig_deployment_strategy" "example" {
deployment_duration_in_minutes = 3
description = "Example Deployment Strategy"
final_bake_time_in_minutes = 4
growth_factor = 10
growth_type = "LINEAR"
name = "example-deployment-strategy-tf"
replicate_to = "NONE"
tags = {
Type = "AppConfig Deployment Strategy"
}
}