Skip to content

Commit

Permalink
managed app: managed_app_outputs -> outputs (#6704)
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte authored Apr 30, 2020
1 parent 2fd690e commit 5cd6c9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func resourceManagedApplication() *schema.Resource {

"tags": tags.Schema(),

"managed_app_outputs": {
"outputs": {
Type: schema.TypeMap,
Computed: true,
Elem: &schema.Schema{
Expand Down Expand Up @@ -239,7 +239,7 @@ func resourceManagedApplicationRead(d *schema.ResourceData, meta interface{}) er
return err
}

if err = d.Set("managed_app_outputs", flattenManagedApplicationParametersOrOutputs(props.Outputs)); err != nil {
if err = d.Set("outputs", flattenManagedApplicationParametersOrOutputs(props.Outputs)); err != nil {
return err
}
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/managed_application.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ The following attributes are exported:

* `id` - The ID of the Managed Application.

* `managed_app_outputs` - The name and value pairs that define the managed application outputs.
* `outputs` - The name and value pairs that define the managed application outputs.

## Timeouts

Expand Down

0 comments on commit 5cd6c9d

Please sign in to comment.