Skip to content

Commit

Permalink
Move to coveooss github owner
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Duchesne committed Jun 27, 2019
1 parent 5379369 commit 63b9ec4
Show file tree
Hide file tree
Showing 9 changed files with 142 additions and 83 deletions.
16 changes: 8 additions & 8 deletions README.md
@@ -1,8 +1,8 @@
# TGF

[![Build Status](https://travis-ci.org/coveo/tgf.svg?branch=master)](https://travis-ci.org/coveo/tgf)
[![Go Report Card](https://goreportcard.com/badge/github.com/coveo/tgf)](https://goreportcard.com/report/github.com/coveo/tgf)
[![Coverage Status](https://coveralls.io/repos/github/coveo/tgf/badge.svg?branch=master)](https://coveralls.io/github/coveo/tgf?branch=master)
[![Build Status](https://travis-ci.org/coveooss/tgf.svg?branch=master)](https://travis-ci.org/coveooss/tgf)
[![Go Report Card](https://goreportcard.com/badge/github.com/coveooss/tgf)](https://goreportcard.com/report/github.com/coveooss/tgf)
[![Coverage Status](https://coveralls.io/repos/github/coveooss/tgf/badge.svg?branch=master)](https://coveralls.io/github/coveooss/tgf?branch=master)

A **T**erra**g**runt **f**rontend that allow execution of Terragrunt/Terraform through Docker.

Expand Down Expand Up @@ -40,14 +40,14 @@ On `mac` and `linux`:
You can run the `get-latest-tgf.sh` script to check if you have the latest version of tgf installed and install it if needed:

```bash
curl https://raw.githubusercontent.com/coveo/tgf/master/get-latest-tgf.sh | bash
curl https://raw.githubusercontent.com/coveooss/tgf/master/get-latest-tgf.sh | bash
```

On `Windows` with Powershell:

```powershell
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Invoke-WebRequest https://github.com/coveo/tgf/releases/download/v1.20.2/tgf_1.20.2_windows_64-bits.zip -OutFile tgf.zip
Invoke-WebRequest https://github.com/coveooss/tgf/releases/download/v1.20.2/tgf_1.20.2_windows_64-bits.zip -OutFile tgf.zip
```

## Configuration
Expand Down Expand Up @@ -136,8 +136,8 @@ Configurable values are: docker-image, docker-image-version, docker-image-tag, d
docker-image-build-tag, logging-level, entry-point, docker-refresh, docker-options, recommended-image-version, required-image-version,
tgf-recommended-version, environment, run-before, run-after, alias.
You can get the full documentation at https://github.com/coveo/tgf/blob/master/README.md and check for new version at
https://github.com/coveo/tgf/releases/latest.
You can get the full documentation at https://github.com/coveooss/tgf/blob/master/README.md and check for new version at
https://github.com/coveooss/tgf/releases/latest.
Any docker image could be used, but TGF specialized images could be found at: https://hub.docker.com/r/coveo/tgf/tags.
Expand Down Expand Up @@ -220,7 +220,7 @@ Returns the version of `Terraform` since we specified the entry point to be terr

* [Terraform](https://www.terraform.io/)
* [Terragrunt](https://github.com/coveo/terragrunt)
* [Go Template](https://github.com/coveo/gotemplate)
* [Go Template](https://github.com/coveooss/gotemplate)
* Shells & tools
* `sh`
* `openssl`
Expand Down
10 changes: 5 additions & 5 deletions cli.go
Expand Up @@ -5,10 +5,10 @@ import (
"os"
"strings"

"github.com/coveo/gotemplate/v3/errors"
"github.com/coveo/gotemplate/v3/hcl"
"github.com/coveo/gotemplate/v3/template"
"github.com/coveo/kingpin/v2"
"github.com/coveooss/gotemplate/v3/errors"
"github.com/coveooss/gotemplate/v3/hcl"
"github.com/coveooss/gotemplate/v3/template"
"github.com/coveord/kingpin/v2"
"github.com/fatih/color"
)

Expand Down Expand Up @@ -147,7 +147,7 @@ func NewTGFApplication(args []string) *TGFApplication {
}

func formatDescription() string {
const gitSource = "https://github.com/coveo/tgf"
const gitSource = "https://github.com/coveooss/tgf"

link := color.New(color.FgHiBlue, color.Italic).SprintfFunc()
bold := color.New(color.Bold).SprintfFunc()
Expand Down
2 changes: 1 addition & 1 deletion cli_test.go
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/coveo/gotemplate/v3/collections"
"github.com/coveooss/gotemplate/v3/collections"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion config.go
Expand Up @@ -18,7 +18,7 @@ import (

"github.com/aws/aws-sdk-go/service/ssm"
"github.com/blang/semver"
"github.com/coveo/gotemplate/v3/collections"
"github.com/coveooss/gotemplate/v3/collections"
"github.com/fatih/color"
"github.com/gruntwork-io/terragrunt/aws_helper"
"github.com/hashicorp/go-getter"
Expand Down
2 changes: 1 addition & 1 deletion docker.go
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ecr"
"github.com/blang/semver"
"github.com/coveo/gotemplate/v3/utils"
"github.com/coveooss/gotemplate/v3/utils"
"github.com/docker/docker/api/types"
"github.com/docker/docker/api/types/filters"
"github.com/docker/docker/client"
Expand Down
4 changes: 2 additions & 2 deletions get-latest-tgf.sh
Expand Up @@ -31,11 +31,11 @@ install_latest_tgf () {
if [[ $(uname -s) == Linux ]]
then
echo 'Installing latest tgf version for Linux in' $TGF_PATH '...'
curl -sL "https://github.com/coveo/tgf/releases/download/v"$TGF_LATEST_VERSION"/tgf_"$TGF_LATEST_VERSION"_linux_64-bits.zip" | gzip -d > $TGF && chmod +x $TGF && script_end
curl -sL "https://github.com/coveooss/tgf/releases/download/v"$TGF_LATEST_VERSION"/tgf_"$TGF_LATEST_VERSION"_linux_64-bits.zip" | gzip -d > $TGF && chmod +x $TGF && script_end
elif [[ $(uname -s) == Darwin ]]
then
echo 'Installing latest tgf for OSX in' $TGF_PATH '...'
curl -sL "https://github.com/coveo/tgf/releases/download/v"$TGF_LATEST_VERSION"/tgf_"$TGF_LATEST_VERSION"_macOS_64-bits.zip" | bsdtar -xf- -C $TGF_PATH && script_end
curl -sL "https://github.com/coveooss/tgf/releases/download/v"$TGF_LATEST_VERSION"/tgf_"$TGF_LATEST_VERSION"_macOS_64-bits.zip" | bsdtar -xf- -C $TGF_PATH && script_end
else
echo 'OS not supported.'
exit 1
Expand Down
9 changes: 5 additions & 4 deletions go.mod
@@ -1,14 +1,15 @@
module github.com/coveo/tgf
module github.com/coveooss/tgf

go 1.12

replace github.com/gruntwork-io/terragrunt => github.com/coveo/terragrunt v1.4.0-beta1
replace github.com/gruntwork-io/terragrunt => github.com/coveooss/terragrunt v1.4.0

require (
github.com/Microsoft/go-winio v0.4.12 // indirect
github.com/aws/aws-sdk-go v1.20.2
github.com/blang/semver v3.5.1+incompatible
github.com/coveo/gotemplate/v3 v3.1.0-test
github.com/coveo/kingpin/v2 v2.3.0
github.com/coveooss/gotemplate/v3 v3.2.0
github.com/coveord/kingpin/v2 v2.3.1
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.4.0 // indirect
Expand Down

0 comments on commit 63b9ec4

Please sign in to comment.