github.com/GoogleCloudPlatform/terraformer@v0.8.18/providers/okta/app_swa.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 AppSWAGenerator struct {
    25  	OktaService
    26  }
    27  
    28  func (g AppSWAGenerator) 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_swa",
    35  			"okta",
    36  			[]string{}))
    37  	}
    38  	return resources
    39  }
    40  
    41  func (g *AppSWAGenerator) InitResources() error {
    42  	ctx, client, e := g.Client()
    43  	if e != nil {
    44  		return e
    45  	}
    46  
    47  	apps, err := getSWAApplications(ctx, client)
    48  	if err != nil {
    49  		return err
    50  	}
    51  
    52  	g.Resources = g.createResources(apps)
    53  	return nil
    54  }
    55  
    56  func getSWAApplications(ctx context.Context, client *okta.Client) ([]*okta.Application, error) {
    57  	signOnMode := "BROWSER_PLUGIN"
    58  	apps, err := getApplications(ctx, client, signOnMode)
    59  	if err != nil {
    60  		return nil, err
    61  	}
    62  
    63  	swaApps := []*okta.Application{}
    64  	for _, app := range apps {
    65  		if app.Name == "template_swa" {
    66  			swaApps = append(swaApps, app)
    67  		}
    68  	}
    69  
    70  	return swaApps, nil
    71  }