-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented sync method to allows the sync of groups and its members
- Loading branch information
1 parent
6587be6
commit 05f87d4
Showing
13 changed files
with
1,412 additions
and
174 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -24,3 +24,6 @@ packaged.yaml | |
# IDE | ||
.idea/ | ||
.vscode/ | ||
|
||
# SAM | ||
.aws-sam/ |
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 |
---|---|---|
@@ -1,24 +1,29 @@ | ||
module github.com/awslabs/ssosync | ||
|
||
go 1.14 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 | ||
github.com/aws/aws-lambda-go v1.17.0 | ||
github.com/aws/aws-sdk-go v1.33.7 | ||
github.com/golang/mock v1.4.3 | ||
github.com/golang/protobuf v1.4.1 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.7 | ||
github.com/aws/aws-lambda-go v1.23.0 | ||
github.com/aws/aws-sdk-go v1.38.6 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/golang/mock v1.5.0 | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.6.8 | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/pelletier/go-toml v1.8.1 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.2.0 | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/spf13/viper v1.4.0 | ||
github.com/stretchr/testify v1.5.1 | ||
golang.org/x/net v0.0.0-20200505041828-1ed23360d12c // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d | ||
golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indirect | ||
google.golang.org/api v0.24.0 | ||
google.golang.org/appengine v1.6.6 // indirect | ||
google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84 // indirect | ||
google.golang.org/grpc v1.29.1 // indirect | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.6.1 | ||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 | ||
golang.org/x/sys v0.0.0-20210324051608-47abb6519492 // indirect | ||
google.golang.org/api v0.43.0 | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
) |
Oops, something went wrong.