Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Cone <[email protected]>
  • Loading branch information
kpfleming and mattcone authored Mar 6, 2025
1 parent 617cc12 commit 5cbe2be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastly/base_fastly_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func resourceService(serviceDef ServiceDefinition) *schema.Resource {
Schema: map[string]*schema.Schema{
"activate": {
Type: schema.TypeBool,
Description: "Conditionally prevents new service-versions from being activated. The apply step will create a new draft version but will not activate it if this is set to `false`. Default `true`",
Description: "Conditionally prevents new service versions from being activated. The apply step will create a new draft version but will not activate it if this is set to `false`. Default `true`",
Default: true,
Optional: true,
},
Expand Down Expand Up @@ -149,7 +149,7 @@ func resourceService(serviceDef ServiceDefinition) *schema.Resource {
},
"stage": {
Type: schema.TypeBool,
Description: "Conditionally enables new service-versions to be staged. If `set` to true, all changes made by an `apply` step will be staged, even if `apply` did not create a new draft version. Default `false`",
Description: "Conditionally enables new service versions to be staged. If `set` to true, all changes made by an `apply` step will be staged, even if `apply` did not create a new draft version. Default `false`",
Default: false,
Optional: true,
},
Expand Down

0 comments on commit 5cbe2be

Please sign in to comment.