Skip to content

Commit

Permalink
ROUTE53: fix parameter type for R53_EVALUATE_TARGET_HEALTH (#2658)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanbouvier authored Nov 29, 2023
1 parent 5b93f94 commit 88f007c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/types/dnscontrol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2300,7 +2300,7 @@ declare function R53_ALIAS(name: string, target: string, zone_idModifier: Domain
*
* @see https://docs.dnscontrol.org/language-reference/record-modifiers/service-provider-specific/amazon-route-53/r53_evaluate_target_health
*/
declare function R53_EVALUATE_TARGET_HEALTH(enabled: bool): RecordModifier;
declare function R53_EVALUATE_TARGET_HEALTH(enabled: boolean): RecordModifier;

/**
* `R53_ZONE` lets you specify the AWS Zone ID for an entire domain ([`D()`](../global/D.md)) or a specific [`R53_ALIAS()`](../domain/R53_ALIAS.md) record.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: R53_EVALUATE_TARGET_HEALTH
parameters:
- enabled
parameter_types:
enabled: bool
enabled: boolean
ts_return: RecordModifier
provider: ROUTE53
---
Expand Down

0 comments on commit 88f007c

Please sign in to comment.