Skip to content

Commit

Permalink
Clarify Image Optimizer shield requirements (#874)
Browse files Browse the repository at this point in the history
  • Loading branch information
pingihu committed Jul 22, 2024
1 parent cd43fa5 commit ea9579e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/service_vcl.md
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ Optional:

- `brotli_compression` (Boolean) Enable Brotli Compression support
- `domain_inspector` (Boolean) Enable Domain Inspector support
- `image_optimizer` (Boolean) Enable Image Optimizer support (requires at least one backend with a `shield` attribute)
- `image_optimizer` (Boolean) Enable Image Optimizer support (all backends must have a `shield` attribute)
- `name` (String) Used by the provider to identify modified settings (changing this value will force the entire block to be deleted, then recreated)
- `origin_inspector` (Boolean) Enable Origin Inspector support
- `websockets` (Boolean) Enable WebSockets support
Expand Down
2 changes: 1 addition & 1 deletion fastly/block_fastly_service_product_enablement.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (h *ProductEnablementServiceAttributeHandler) GetSchema() *schema.Schema {
blockAttributes["image_optimizer"] = &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Description: "Enable Image Optimizer support (requires at least one backend with a `shield` attribute)",
Description: "Enable Image Optimizer support (all backends must have a `shield` attribute)",
}
blockAttributes["origin_inspector"] = &schema.Schema{
Type: schema.TypeBool,
Expand Down

0 comments on commit ea9579e

Please sign in to comment.