Skip to content

Commit

Permalink
ds/servicecat_portfolio: Make tags computed
Browse files Browse the repository at this point in the history
  • Loading branch information
YakDriver committed May 24, 2021
1 parent d1dd439 commit af61985
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions aws/data_source_aws_servicecatalog_portfolio.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ func dataSourceAwsServiceCatalogPortfolio() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"description": {
Type: schema.TypeString,
Computed: true,
},
"id": {
Type: schema.TypeString,
Required: true,
Expand All @@ -40,15 +44,11 @@ func dataSourceAwsServiceCatalogPortfolio() *schema.Resource {
Type: schema.TypeString,
Computed: true,
},
"description": {
Type: schema.TypeString,
Computed: true,
},
"provider_name": {
Type: schema.TypeString,
Computed: true,
},
"tags": tagsSchema(),
"tags": tagsSchemaComputed(),
},
}
}
Expand Down

0 comments on commit af61985

Please sign in to comment.