Skip to content

Commit

Permalink
Merge pull request #11 from lifeomic/no-shared-config
Browse files Browse the repository at this point in the history
fix: Remove the shared aws config
keeslinp authored Jan 14, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 20fd90a + c5f84fe commit 311120c
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appstore/client.go
Original file line number Diff line number Diff line change
@@ -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
}
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ locals {

provider "appstore" {}

resource "applet" "anxiety" {
resource "applet" "terraform_test_applet" {
provider = appstore
name = var.name
description = var.description
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "Anxiety Severity Assessment",
"name": "Anxiety Severity Assessment",
"name": "Terraform Test Applet",
"icons": [
{
"src": "icon-240.png",

0 comments on commit 311120c

Please sign in to comment.