Provides an API Gateway Usage Plan.
resource "aws_api_gateway_rest_api" "myapi" {
name = "MyDemoAPI"
}
...
resource "aws_api_gateway_deployment" "dev" {
rest_api_id = "${aws_api_gateway_rest_api.myapi.id}"
stage_name = "dev"
}
resource "aws_api_gateway_deployment" "prod" {
rest_api_id = "${aws_api_gateway_rest_api.myapi.id}"
stage_name = "prod"
}
resource "aws_api_gateway_usage_plan" "MyUsagePlan" {
name = "my-usage-plan"
description = "my description"
product_code = "MYCODE"
api_stages {
api_id = "${aws_api_gateway_rest_api.myapi.id}"
stage = "${aws_api_gateway_deployment.dev.stage_name}"
}
api_stages {
api_id = "${aws_api_gateway_rest_api.myapi.id}"
stage = "${aws_api_gateway_deployment.prod.stage_name}"
}
quota_settings {
limit = 20
offset = 2
period = "WEEK"
}
throttle_settings {
burst_limit = 5
rate_limit = 10
}
}
The API Gateway Usage Plan argument layout is a structure composed of several sub-resources - these resources are laid out below.
name - (Required) The name of the usage plan. description - (Optional) The description of a usage plan. api_stages - (Optional) The associated API stages of the usage plan. quota_settings - (Optional) The quota settings of the usage plan. throttle_settings - (Optional) The throttling limits of the usage plan. product_code - (Optional) The AWS Markeplace product identifier to associate with the usage plan as a SaaS product on AWS Marketplace. api_id (Required) - API Id of the associated API stage in a usage plan. stage (Required) - API stage name of the associated API stage in a usage plan. limit (Optional) - The maximum number of requests that can be made in a given time period. offset (Optional) - The number of requests subtracted from the given limit in the initial time period. period (Optional) - The time period in which the limit applies. Valid values are "DAY", "WEEK" or "MONTH". burst_limit (Optional) - The API request burst limit, the maximum rate limit over a time ranging from one to a few seconds, depending upon whether the underlying token bucket is at its full capacity. rate_limit (Optional) - The API request steady-state rate limit. In addition to all arguments above, the following attributes are exported:
id - The ID of the API resource name - The name of the usage plan. description - The description of a usage plan. api_stages - The associated API stages of the usage plan. quota_settings - The quota of the usage plan. throttle_settings - The throttling limits of the usage plan. product_code - The AWS Markeplace product identifier to associate with the usage plan as a SaaS product on AWS Marketplace. AWS API Gateway Usage Plan can be imported using the id, e.g.
$ terraform import aws_api_gateway_usage_plan.myusageplan <usage_plan_id>
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/api_gateway_usage_plan.html