Resource: aws_servicequotas_service_quota

Manages an individual Service Quota.

Example Usage

resource "aws_servicequotas_service_quota" "example" {
  quota_code   = "L-F678F1CE"
  service_code = "vpc"
  value        = 75
}

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 aws_servicequotas_service_quota using the service code and quota code, separated by a front slash (/). For example:

import {
  to = aws_servicequotas_service_quota.example
  id = "vpc/L-F678F1CE"
}

Using terraform import, import aws_servicequotas_service_quota using the service code and quota code, separated by a front slash (/). For example:

% terraform import aws_servicequotas_service_quota.example vpc/L-F678F1CE