Skip to content

Commit

Permalink
feat(provider): enable to tf import proposals (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmvalera authored Feb 1, 2023
1 parent 413491c commit e22e0ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/provider/resource_defender_proposal.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ func resourceProposal() *schema.Resource {
ReadContext: proposalRead,
UpdateContext: proposalUpdate,
DeleteContext: proposalDelete,
Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
Description: `Resource is used to managed Defender Admin action proposals.
Any actions created this way will have no approvals initially.`,
Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit e22e0ff

Please sign in to comment.