Skip to content

Commit

Permalink
Merge pull request #34326 from hashicorp/fixup-34158
Browse files Browse the repository at this point in the history
Fixes for #34158
  • Loading branch information
ewbankkit committed Nov 9, 2023
2 parents ab5eaf0 + 10ce255 commit 436254c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .changelog/34158.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```release-note:enhancement
resource/sagemaker: Add model_data_source in model containers
resource/aws_sagemaker_model: Add `container.model_data_source` and `primary_container.model_data_source` configuration blocks
```
2 changes: 2 additions & 0 deletions internal/service/sagemaker/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ func ResourceModel() *schema.Resource {
"model_data_source": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down Expand Up @@ -264,6 +265,7 @@ func ResourceModel() *schema.Resource {
"model_data_source": {
Type: schema.TypeList,
Optional: true,
Computed: true,
MaxItems: 1,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit 436254c

Please sign in to comment.