library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Update Route 53 Record

Updates a specified DNS record in Amazon Route 53.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run aws.pipeline.update_route53_record \
--arg 'region=<string>' \
--arg 'hosted_zone_id=<string>' \
--arg 'record_name=<string>' \
--arg 'record_type=<string>' \
--arg 'record_ttl=<number>' \
--arg 'record_values=<list of string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = aws.pipeline.update_route53_record
args = {
region = <string>
hosted_zone_id = <string>
record_name = <string>
record_type = <string>
record_ttl = <number>
record_values = <list of string>
}
}

Params

NameTypeRequiredDescriptionDefault
regionstringYesThe name of the Region.-
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
hosted_zone_idstringYesThe ID of the hosted zone containing the record.-
record_namestringYesThe DNS name of the record to update.-
record_typestringYesThe type of the DNS record (e.g., A, CNAME, MX, etc.).-
record_ttlnumberYesThe TTL (time to live) of the DNS record.-
record_valueslist of stringYesThe new values of the DNS record.-

Outputs

NameDescription
change_infoContains the details of an Amazon Route53 record update request.