Resource: aws_servicequotas_template

Terraform resource for managing an AWS Service Quotas Template.

Example Usage

Basic Usage

resource "aws_servicequotas_template" "example" {
  region       = "us-east-1"
  quota_code   = "L-2ACBD22F" # function and layer storage (default: 75 GB)
  service_code = "lambda"
  value        = "80"
}

Argument Reference

The following arguments are required:

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 Service Quotas Template using the id. For example:

import {
  to = aws_servicequotas_template.example
  id = "us-east-1,L-2ACBD22F,lambda"
}

Using terraform import, import Service Quotas Template using the id. For example:

% terraform import aws_servicequotas_template.example us-east-1,L-2ACBD22F,lambda