scaleway / terraform-provider-scaleway

Terraform Scaleway provider
https://www.terraform.io/docs/providers/scaleway/
Mozilla Public License 2.0
199 stars 125 forks source link

feat(container): implement ScalingOption #2811

Open Codelax opened 2 days ago

Codelax commented 2 days ago

Community Note

Description

A new ScalingOption object was added to containers. It replace current max_concurrency. The old field should be marked as deprecated while adding the new object.

New or Affected Resource(s)

Potential Terraform Configuration

resource scaleway_container container {
  scaling {
    concurrent_requests_threshold = 20
  }
}