Skip to content

Commit

Permalink
set defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
bendrucker committed May 20, 2020
1 parent 21613fe commit 0c8263c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tfe/resource_tfe_team.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,25 @@ func resourceTFETeam() *schema.Resource {
"manage_policies": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"manage_workspaces": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"manage_vcs_settings": {
Type: schema.TypeBool,
Optional: true,
Default: false,
},
},
},
},
"visibility": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Default: "secret",
ValidateFunc: validation.StringInSlice([]string{
"secret",
"organization",
Expand Down

0 comments on commit 0c8263c

Please sign in to comment.