Provides an API Gateway Resource.
resource "aws_api_gateway_rest_api" "MyDemoAPI" { name = "MyDemoAPI" description = "This is my API for demonstration purposes" } resource "aws_api_gateway_resource" "MyDemoResource" { rest_api_id = "${aws_api_gateway_rest_api.MyDemoAPI.id}" parent_id = "${aws_api_gateway_rest_api.MyDemoAPI.root_resource_id}" path_part = "mydemoresource" }
The following arguments are supported:
rest_api_id
- (Required) The ID of the associated REST API parent_id
- (Required) The ID of the parent API resource path_part
- (Required) The last path segment of this API resource. In addition to all arguments above, the following attributes are exported:
id
- The resource's identifier. path
- The complete path for this API resource, including all parent paths.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/api_gateway_resource.html