Deleting function scaling settings
- In the management console
, navigate to the folder containing the function. - Go to Cloud Functions.
- Select the function.
- Under Version history, hover over the tag of the function version (e.g.,
$latest) you want to delete scaling settings for. - In the pop-up window, click Scaling settings.
- To delete a scaling setting, set it to zero.
- Click Save.
To remove scaling settings, run this command:
yc serverless function remove-scaling-policy \
--id=<function_ID> \
--tag=\$latest
Where:
With Terraform
Terraform is distributed under the Business Source License
For more information about the provider resources, see the relevant documentation on the Terraform
If you do not have Terraform yet, install it and configure the Yandex Cloud provider.
To delete scaling settings:
-
In the configuration file, describe the resources you want to create:
yandex_function_scaling_policy: Description of function scaling settings.function_id: Function ID.policy: Scaling settings:policy.0.tag: Function version tag.policy.0.zone_instances_limit: Number of function instances. Set it to0.policy.0.zone_requests_limit: Number of calls in progress. Set it to0.
Here is an example of the configuration file structure:
resource "yandex_function_scaling_policy" "my_scaling_policy" { function_id = "are1samplefu********" policy { tag = "$latest" zone_instances_limit = 0 zone_requests_limit = 0 } }For more information about
yandex_function_scaling_policyproperties, see this provider guide. -
Validate your configuration using this command:
terraform validateIf the configuration is valid, you will get this message:
Success! The configuration is valid. -
Run this command:
terraform planYou will see a list of resources and their properties. No changes will be made at this step. Terraform will show any errors in the configuration.
-
Apply the configuration changes:
terraform apply -
Type
yesand press Enter to confirm the changes.
You can check that the scaling settings are deleted using the management console
yc serverless function list-scaling-policies <function_name_or_ID>
To remove scaling settings, use the removeScalingPolicy REST API method for the Function resource or the FunctionService/RemoveScalingPolicy gRPC API call.