Skip to content

Commit

Permalink
Merge pull request #9 from carlpett/rename-repo
Browse files Browse the repository at this point in the history
Rename program to tfz53
  • Loading branch information
carlpett authored Oct 21, 2018
2 parents 9025f52 + 01b8157 commit fe367d0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/carlpett/bzfttr53rdutil
working_directory: /go/src/github.com/carlpett/tfz53
steps:
- checkout
- run: go get github.com/mitchellh/gox
Expand All @@ -19,7 +19,7 @@ jobs:
release:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/carlpett/bzfttr53rdutil
working_directory: /go/src/github.com/carlpett/tfz53
steps:
- checkout
- attach_workspace:
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
bzfttr53rdutil
tfz53
binaries/
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build:

crossbuild:
@echo ">> cross-compiling"
@gox -arch="$(CROSSBUILD_ARCH)" -os="$(CROSSBUILD_OS)" -ldflags="$(LDFLAGS)" -output="binaries/bzfttr53rdutil_{{.OS}}_{{.Arch}}"
@gox -arch="$(CROSSBUILD_ARCH)" -os="$(CROSSBUILD_OS)" -ldflags="$(LDFLAGS)" -output="binaries/tfz53_{{.OS}}_{{.Arch}}"

test:
@echo ">> testing"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# BIND-zonefile-to-Terraform-Route53-resource-definition utility
Or BZFTTR53RDUtil, for "short". Lack of nice, pronouncible name aside, this small utility creates a [Terraform](https://terraform.io) file for Route53 resources from a BIND zonefile.
# tfz53 (previously knows as bzfttr53rdutil)
A conversion utility for creating [Terraform](https://terraform.io) resource definitions for AWS Route53 from BIND zonefiles.

## Installation
Download the [latest release](https://github.com/carlpett/bzfttr53rdutil/releases/latest).
Download the [latest release](https://github.com/carlpett/tfz53/releases/latest).

## Usage
`bzfttr53rdutil -domain <domain-name> [flags] > route53-domain.tf`
`tfz53 -domain <domain-name> [flags] > route53-domain.tf`

## Flags
| Name | Description | Default |
Expand All @@ -21,8 +21,8 @@ If you want to build from source, you will first need the Go tools. Instructions
Once that is done, run

```bash
go get github.com/carlpett/bzfttr53rdutil
cd $GOPATH/src/github.com/carlpett/bzfttr53rdutil
go get github.com/carlpett/tfz53
cd $GOPATH/src/github.com/carlpett/tfz53
go build
```

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var (
func main() {
flag.Parse()
if *showVersion {
fmt.Printf("bzfttr53rdutil %s (%s/%s) (%s on %s)", Version, Branch, Revision, BuildUser, BuildDate)
fmt.Printf("tfz53 %s (%s/%s) (%s on %s)", Version, Branch, Revision, BuildUser, BuildDate)
os.Exit(0)
}

Expand Down

0 comments on commit fe367d0

Please sign in to comment.