Skip to content
globe

GitHub Action

CloudFlare Create DNS Record

v2.0 Latest version

CloudFlare Create DNS Record

globe

CloudFlare Create DNS Record

Creates a new CloudFlare DNS record

Installation

Copy and paste the following snippet into your .yml file.

              

- name: CloudFlare Create DNS Record

uses: InfraWay/create-dns-record@v2.0

Learn more about this action in InfraWay/create-dns-record

Choose a version

Create Cloudflare DNS Record Action for GitHub

Creates new CloudFlare DNS record. Updates the record if it already exists.

Usage via Github Actions

name: example
on:
  pull_request:
    type: [opened, reopened]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: infraway/create-dns-record@v2.0
        with:
          type: "A"
          name: "review.example.com"
          content: "10.10.10.10"
          ttl: 1
          proxied: true
          token: ${{ secrets.CLOUDFLARE_TOKEN }}
          zone: ${{ secrets.CLOUDFLARE_ZONE }}

Usage via docker image

docker run -it --rm \
  -e "INPUT_TOKEN=1" \
  -e "INPUT_ZONE=2" \
  -e "INPUT_TYPE=A" \
  -e "INPUT_NAME=review.example.com" \
  -e "INPUT_CONTENT=10.10.10.10" \
  -e "INPUT_TTL=3600" \
  -e "INPUT_PROXIED=true" \
  infraway/cloudflare-create-dns-record 

License

The scripts and documentation in this project are released under the MIT License.