-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds feature to provision app integration #137
- Loading branch information
Showing
3 changed files
with
140 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package provision | ||
|
||
import ( | ||
"fmt" | ||
Check failure on line 18 in cmd/provision/provision.go GitHub Actions / lint
|
||
"internal/apiclient" | ||
"internal/client/provision" | ||
"regexp" | ||
Check failure on line 21 in cmd/provision/provision.go GitHub Actions / lint
|
||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// Cmd to provision App Integration | ||
var Cmd = &cobra.Command{ | ||
Use: "provision", | ||
Short: "Provisions application integration", | ||
Long: "Provisions application integration in the region", | ||
Args: func(cmd *cobra.Command, args []string) (err error) { | ||
cmdProject := cmd.Flag("proj") | ||
cmdRegion := cmd.Flag("reg") | ||
if err = apiclient.SetRegion(cmdRegion.Value.String()); err != nil { | ||
return err | ||
} | ||
return apiclient.SetProjectID(cmdProject.Value.String()) | ||
}, | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
cloudKMS := cmd.Flag("cloudkms").Value.String() | ||
serviceAccount := cmd.Flag("service-account").Value.String() | ||
|
||
if cloudKMS != "" { | ||
re := regexp.MustCompile(`locations\/([a-zA-Z0-9_-]+)\/keyRings\/([a-zA-Z0-9_-]+)\/cryptoKeys\/([a-zA-Z0-9_-]+)`) | ||
ok := re.Match([]byte(cloudKMS)) | ||
if !ok { | ||
return fmt.Errorf("CloudKMS key must be of the format " + | ||
"locations/{location}/keyRings/{test}/cryptoKeys/{cryptoKey}") | ||
} | ||
} | ||
|
||
if serviceAccount != "" { | ||
re := regexp.MustCompile(`[a-zA-Z0-9-]+@[a-zA-Z0-9-]+\.iam\.gserviceaccount\.com`) | ||
ok := re.Match([]byte(serviceAccount)) | ||
if !ok { | ||
return fmt.Errorf("service account must of the format " + | ||
"<name>@<project-id>.iam.gserviceaccount.com") | ||
} | ||
} | ||
|
||
_, err = provision.Provision(cloudKMS, samples, gmek, serviceAccount) | ||
return err | ||
}, | ||
} | ||
|
||
var samples, gmek bool | ||
|
||
func init() { | ||
var cloudKMS, serviceAccount, project, region string | ||
|
||
Cmd.PersistentFlags().StringVarP(&project, "proj", "p", | ||
"", "Integration GCP Project name") | ||
Cmd.PersistentFlags().StringVarP(®ion, "reg", "r", | ||
"", "Integration region name") | ||
Cmd.Flags().StringVarP(&cloudKMS, "cloudkms", "k", | ||
"", "Cloud KMS config for AuthModule to encrypt/decrypt credentials") | ||
Cmd.Flags().BoolVarP(&samples, "samples", "s", | ||
true, "Indicates if sample workflow should be created along with provisioning") | ||
Cmd.Flags().BoolVarP(&gmek, "gmek", "g", | ||
true, "Indicates provision with GMEK or CMEK") | ||
Cmd.Flags().StringVarP(&serviceAccount, "service-account", "", | ||
"", "User input run-as service account") | ||
} |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright 2023 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package provision | ||
|
||
import ( | ||
"fmt" | ||
"internal/apiclient" | ||
"net/url" | ||
"path" | ||
"strconv" | ||
"strings" | ||
) | ||
|
||
// Provision | ||
func Provision(cloudkms string, samples bool, gmek bool, serviceAccount string) (respBody []byte, err error) { | ||
u, _ := url.Parse(apiclient.GetBaseIntegrationURL()) | ||
provStr := []string{} | ||
|
||
if serviceAccount != "" { | ||
provStr = append(provStr, "\"runAsServiceAccount\":\""+serviceAccount+"\"") | ||
} | ||
|
||
if cloudkms != "" { | ||
kmsConfig := getCloudKMSConfig(cloudkms) | ||
provStr = append(provStr, "\"cloudKmsConfig\":"+kmsConfig) | ||
} | ||
|
||
provStr = append(provStr, "\"createSampleWorkflows\":"+strconv.FormatBool(samples)) | ||
provStr = append(provStr, "\"provisionGmek\":"+strconv.FormatBool(gmek)) | ||
|
||
u.Path = path.Join(u.Path, "client:provision") | ||
|
||
payload := "{" + strings.Join(provStr, ",") + "}" | ||
fmt.Println(payload) | ||
respBody, err = apiclient.HttpClient(u.String(), payload) | ||
return respBody, err | ||
} | ||
|
||
func getCloudKMSConfig(cloudkms string) string { | ||
kmsParts := strings.Split(cloudkms, "/") | ||
return fmt.Sprintf("{\"kmsLocation\":\"%s\",\"kmsRing\":\"%s\",\"key\":\"%s\",\"keyVersion\":\"%s\",\"kmsProjectId\":\"%s\"}", | ||
kmsParts[3], kmsParts[5], kmsParts[7], kmsParts[9], kmsParts[1]) | ||
} |