Skip to content

Commit

Permalink
Merge pull request #15538 from terraform-providers/b-aws_glue_workflo…
Browse files Browse the repository at this point in the history
…w-import

resource/aws_glue_workflow: Ensure max_concurrent_runs attribute is saved during import
  • Loading branch information
gdavison authored Oct 8, 2020
2 parents 7aed6ca + 488c667 commit 5a276c3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions aws/resource_aws_glue_workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ func resourceAwsGlueWorkflowRead(d *schema.ResourceData, meta interface{}) error
return fmt.Errorf("error setting default_run_properties: %w", err)
}
d.Set("description", workflow.Description)
d.Set("max_concurrent_runs", workflow.MaxConcurrentRuns)
d.Set("name", workflow.Name)

tags, err := keyvaluetags.GlueListTags(conn, workFlowArn)
Expand Down

0 comments on commit 5a276c3

Please sign in to comment.