From c65286a9c9a609de1c91e3f8e8b3aa17e5891b9c Mon Sep 17 00:00:00 2001 From: Donald Smith Date: Sat, 23 Dec 2017 19:05:26 +0000 Subject: [PATCH] minor update in the docs --- docs/how_to.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how_to.md b/docs/how_to.md index 2efc8908..afb7bde0 100644 --- a/docs/how_to.md +++ b/docs/how_to.md @@ -114,13 +114,13 @@ produces: - **Required:** Yes - **Description:** The available paths and operations for the API. -The Open API terraform provider only considers as terraform resources, API resource paths that have both the Create (POST) +The Open API terraform provider only considers as a terraform resource, API resource paths that have both the Create (POST) and Read (GET) operations available in the form of: ``` POST /api/resource GET /api/resource/{id} ``` -PUT and DELETE are optional operations. +Update (PUT) and Delete (DELETE) are optional operations. The following can be used as a reference to help understand the expected structure.