library
turbot/aws
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: 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(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(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
region
string
YesThe name of the Region.-
conn
connection.aws
YesName of AWS connection to use. If not provided, the default AWS connection will be used.connection.aws.default
hosted_zone_id
string
YesThe ID of the hosted zone containing the record.-
record_name
string
YesThe DNS name of the record to update.-
record_type
string
YesThe type of the DNS record (e.g., A, CNAME, MX, etc.).-
record_ttl
number
YesThe TTL (time to live) of the DNS record.-
record_values
list(string)
YesThe new values of the DNS record.-

Outputs

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