github.com/GoogleCloudPlatform/terraformer@v0.8.18/providers/okta/app_oauth.go (about) 1 // Copyright 2021 The Terraformer Authors. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package okta 16 17 import ( 18 "context" 19 20 "github.com/GoogleCloudPlatform/terraformer/terraformutils" 21 "github.com/okta/okta-sdk-golang/v2/okta" 22 ) 23 24 type AppOAuthGenerator struct { 25 OktaService 26 } 27 28 func (g AppOAuthGenerator) createResources(appList []*okta.Application) []terraformutils.Resource { 29 var resources []terraformutils.Resource 30 for _, app := range appList { 31 resources = append(resources, terraformutils.NewSimpleResource( 32 app.Id, 33 normalizeResourceName(app.Id+"_"+app.Name), 34 "okta_app_oauth", 35 "okta", 36 []string{})) 37 } 38 return resources 39 } 40 41 // Generate Terraform Resources from Okta API, 42 func (g *AppOAuthGenerator) InitResources() error { 43 ctx, client, e := g.Client() 44 if e != nil { 45 return e 46 } 47 48 apps, err := getOAuthApplications(ctx, client) 49 if err != nil { 50 return err 51 } 52 53 g.Resources = g.createResources(apps) 54 return nil 55 } 56 57 func getOAuthApplications(ctx context.Context, client *okta.Client) ([]*okta.Application, error) { 58 signOnMode := "OPENID_CONNECT" 59 apps, err := getApplications(ctx, client, signOnMode) 60 if err != nil { 61 return nil, err 62 } 63 return apps, nil 64 }