-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:oktadeveloper/terraform-provider-…
…okta into check_group_data_source_match � Conflicts: � okta/data_source_okta_group.go
- Loading branch information
Showing
3,073 changed files
with
10,275 additions
and
743,837 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,4 @@ terraform-provider-okta* | |
dist | ||
|
||
bin/ | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
issues: | ||
exclude: | ||
- "not declared by package utf8" | ||
- "unicode/utf8/utf8.go" | ||
- 'not declared by package utf8' | ||
- 'unicode/utf8/utf8.go' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,58 @@ | ||
# all available options: https://goreleaser.com/customization/ | ||
project_name: terraform-provider-okta | ||
|
||
# Visit https://goreleaser.com for documentation on how to customize this | ||
# behavior. | ||
before: | ||
hooks: [] | ||
|
||
hooks: | ||
# this is just an example and not a requirement for provider building/publishing | ||
- go mod tidy | ||
builds: | ||
- binary: "terraform-provider-okta_v{{.Version}}_x4" | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- darwin | ||
- windows | ||
- linux | ||
goarch: | ||
- amd64 | ||
ldflags: [] | ||
|
||
archive: | ||
# https://github.com/terraform-providers/terraform-provider-okta/issues/128#issuecomment-484565435 | ||
name_template: "{{.ProjectName}}-{{.Os}}-{{.Arch}}" | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
- goos: darwin | ||
format: zip | ||
- goos: linux | ||
format: zip | ||
files: | ||
- none* # only package the binary - not defaults: readme, license, changelog | ||
|
||
- env: | ||
# goreleaser does not work with CGO, it could also complicate | ||
# usage by users in CI/CD systems like Terraform Cloud where | ||
# they are unable to install libraries. | ||
- CGO_ENABLED=0 | ||
mod_timestamp: '{{ .CommitTimestamp }}' | ||
flags: | ||
- -trimpath | ||
ldflags: | ||
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}' | ||
goos: | ||
- freebsd | ||
- windows | ||
- linux | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- '386' | ||
- arm | ||
- arm64 | ||
ignore: | ||
- goos: darwin | ||
goarch: '386' | ||
binary: '{{ .ProjectName }}_v{{ .Version }}' | ||
archives: | ||
- format: zip | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}' | ||
checksum: | ||
name_template: 'SHA256SUMS.txt' | ||
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS' | ||
algorithm: sha256 | ||
signs: | ||
- artifacts: checksum | ||
args: | ||
# if you are using this is a GitHub action or some other automated pipeline, you | ||
# need to pass the batch flag to indicate its not interactive. | ||
- '--batch' | ||
- '--local-user' | ||
- '{{ .Env.GPG_FINGERPRINT }}' # set this environment variable for your signing key | ||
- '--output' | ||
- '${signature}' | ||
- '--detach-sign' | ||
- '${artifact}' | ||
release: | ||
# Explicit set the repo to release from. Default is origin. | ||
github: | ||
owner: oktadeveloper | ||
name: terraform-provider-okta | ||
# Visit your project's GitHub Releases page to publish this release. | ||
draft: true | ||
changelog: | ||
skip: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
dist: trusty | ||
dist: bionic | ||
sudo: required | ||
services: | ||
- docker | ||
- docker | ||
language: go | ||
|
||
env: | ||
- GOFLAGS=-mod=vendor | ||
|
||
install: | ||
- make build | ||
- make tools | ||
- make build | ||
- make tools | ||
|
||
branches: | ||
only: | ||
- master | ||
- master | ||
|
||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- go: tip | ||
- go: tip | ||
include: | ||
- go: "1.13.x" | ||
name: "Code Lint" | ||
script: make lint | ||
- go: "1.13.x" | ||
name: "Code Vet" | ||
script: make vet | ||
- go: "1.13.x" | ||
name: "Code UnitTest" | ||
script: make test | ||
- go: '1.15.x' | ||
name: 'Code Lint' | ||
script: make lint | ||
- go: '1.15.x' | ||
name: 'Code Vet' | ||
script: make vet | ||
- go: '1.15.x' | ||
name: 'Code UnitTest' | ||
script: make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.