GithubHelp home page GithubHelp logo

roosterfish_aws-route53-record-set-action's Introduction

AWS Route 53 Record Set

This GitHub Actions allows you to manage AWS Route 53 Record Sets.

The naming is aligned with the official interface: https://docs.aws.amazon.com/cli/latest/reference/route53/change-resource-record-sets.html. There you can find possible variations for every Input this GitHub Action supports.

Get started

A new AWS Route 53 Record Set can be created with the following workflow syntax:

jobs:
  aws_route53:
    runs-on: ubuntu-latest
    steps:
      - name: "Create an A record set"
        uses: Roosterfish/aws-route53-record-set-action@master
        with: 
          aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws_route53_hosted_zone_id: ${{ secrets.AWS_ROUTE53_HOSTED_ZONE_ID }}
          aws_route53_rr_action: "CREATE"
          aws_route53_rr_name: "your-fqdn.example.com"
          aws_route53_rr_type: "A"
          aws_route53_rr_ttl: "300"
          aws_route53_rr_value: "1.2.3.4"

GitHub Action Inputs

The behaviour of this Action can be modified with the following Inputs:

Name Description Choices Required
aws_access_key_id The AWS access key id yes
aws_secret_access_key The AWS secret access key yes
aws_route53_hosted_zone_id The id of the hosted zone yes
aws_route53_rr_action The action that should be taken CREATE, DELETE, UPSERT yes
aws_route53_rr_name The name of the record set yes
aws_route53_rr_type The type of the record set SOA, A, TXT, NS, CNAME, MX, PTR, SRV, SPF, AAAA yes
aws_route53_rr_ttl The TTL of the record set yes
aws_route53_rr_value The value of the record set yes
aws_route53_rr_comment A comment for the record set no
aws_route53_wait Wait until the record set is fully settled in true, false no

Supported Routing Policies

Currently this GitHub Actions supports the following Routing Policies of the AWS Route 53 service:

Name Extra Variables
Basic None

License

The MIT License (MIT)

Copyright (c) 2020 Julian Pelizäus

Used libraries

https://pypi.org/project/boto3/ licensed under Apache License 2.0

roosterfish_aws-route53-record-set-action's People

Contributors

roosterfish avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.