From c5f84feae01e4b3589913b691bfe2f1519046378 Mon Sep 17 00:00:00 2001 From: Pearce Keesling Date: Thu, 13 Jan 2022 15:02:06 -0700 Subject: [PATCH] fix: Remove the shared aws config Now that the okta aws tool has been fixed we don't need to specify a profile anymore. This makes running in different environments simpler. --- appstore/client.go | 2 +- main.tf | 2 +- manifest.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appstore/client.go b/appstore/client.go index a9c6bdb..361f175 100644 --- a/appstore/client.go +++ b/appstore/client.go @@ -241,7 +241,7 @@ func (client *AppStoreClient) deleteAppStoreListing(id string) error { } func BuildAppStoreClient() (*AppStoreClient, error) { - cfg, err := config.LoadDefaultConfig(context.Background(), config.WithSharedConfigProfile("lifeomic-dev")) + cfg, err := config.LoadDefaultConfig(context.Background()) if err != nil { return nil, err } diff --git a/main.tf b/main.tf index 89962f6..4a63f31 100644 --- a/main.tf +++ b/main.tf @@ -40,7 +40,7 @@ locals { provider "appstore" {} -resource "applet" "anxiety" { +resource "applet" "terraform_test_applet" { provider = appstore name = var.name description = var.description diff --git a/manifest.json b/manifest.json index 48e2139..a66f9aa 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "short_name": "Anxiety Severity Assessment", - "name": "Anxiety Severity Assessment", + "name": "Terraform Test Applet", "icons": [ { "src": "icon-240.png",