1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

ROUTE53: fix parameter type for R53_EVALUATE_TARGET_HEALTH (#2658)

This commit is contained in:
Jonathan Bouvier
2023-11-29 11:34:27 -05:00
committed by GitHub
parent 5b93f94ad6
commit 88f007cd1d
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -3,7 +3,7 @@ name: R53_EVALUATE_TARGET_HEALTH
parameters:
- enabled
parameter_types:
enabled: bool
enabled: boolean
ts_return: RecordModifier
provider: ROUTE53
---