Skip to content

Commit

Permalink
remove AppConfig deployment strategy since it's not tied to the app
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Mar 7, 2024
1 parent 97c166f commit eb663cc
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions terraform/000-core/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,3 @@ resource "aws_appconfig_environment" "this" {
name = var.app_env
application_id = one(aws_appconfig_application.this[*].id)
}

resource "aws_appconfig_deployment_strategy" "this" {
count = var.appconfig_app_name == "" ? 0 : 1

name = "immediate"
deployment_duration_in_minutes = 0
growth_factor = 100
growth_type = "LINEAR"
replicate_to = "NONE"
}

0 comments on commit eb663cc

Please sign in to comment.