This commit is contained in:
Donald Guy 2018-07-20 17:44:27 -06:00
Родитель df947b7537
Коммит 5f697f011f
2 изменённых файлов: 42 добавлений и 7 удалений

38
.gitignore поставляемый
Просмотреть файл

@ -1,9 +1,33 @@
# Local .terraform directories
**/.terraform/*
/terraform-provider-jwt
*.dll
*.exe
.DS_Store
example.tf
terraform.tfplan
terraform.tfstate
bin/
modules-dev/
/pkg/
website/.vagrant
website/.bundle
website/build
website/node_modules
.vagrant/
*.backup
./*.tfstate
.terraform/
*.log
*.bak
*~
.*.swp
.idea
*.iml
*.test
*.iml
# .tfstate files
*.tfstate
*.tfstate.*
website/vendor
# Test exclusions
!command/test-fixtures/**/*.tfstate
!command/test-fixtures/**/.terraform/
# .tfvars files
*.tfvars

11
Gopkg.toml Normal file
Просмотреть файл

@ -0,0 +1,11 @@
[[constraint]]
name = "github.com/dgrijalva/jwt-go"
version = "3.2.0"
[[constraint]]
name = "github.com/hashicorp/terraform"
version = "0.11.7"
[prune]
go-tests = true
unused-packages = true