restful_resource - Change the type of body, output from string to dynamic
restful_resource - Read invoked from Create/Update now won't update the body (but still update the output). This makes those round trip inconsistent APIs won't cause error during the terraform apply, which makes the resource as tainted. Instead it will show the diff in the next terraform plan, which brings a chance for users to add the write_only_attrs/ignore_changes
restful_operation - Change the type of body, delete_body, output from string to dynamic
restful_resource data source - Change the type of output from string to dynamic
This PR makes the following changes:
restful_resource
- Change the type ofbody
,output
from string to dynamicrestful_resource
-Read
invoked fromCreate
/Update
now won't update thebody
(but still update theoutput
). This makes those round trip inconsistent APIs won't cause error during theterraform apply
, which makes the resource as tainted. Instead it will show the diff in the nextterraform plan
, which brings a chance for users to add thewrite_only_attrs
/ignore_changes
restful_operation
- Change the type ofbody
,delete_body
,output
from string to dynamicrestful_resource
data source - Change the type ofoutput
from string to dynamicFix #83 Fix #91