library
turbot/aws
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
region | string | Yes | The name of the Region. | - |
conn | connection.aws | Yes | Name of AWS connection to use. If not provided, the default AWS connection will be used. | connection.aws.default |
hosted_zone_id | string | Yes | The ID of the hosted zone containing the record. | - |
record_name | string | Yes | The DNS name of the record to update. | - |
record_type | string | Yes | The type of the DNS record (e.g., A, CNAME, MX, etc.). | - |
record_ttl | number | Yes | The TTL (time to live) of the DNS record. | - |
record_values | list(string) | Yes | The new values of the DNS record. | - |
Outputs
Name | Description |
---|---|
change_info | Contains the details of an Amazon Route53 record update request. |