Skip to content

Commit

Permalink
add features related to S3, EC2, IAM services
Browse files Browse the repository at this point in the history
  • Loading branch information
Abrar-Ahmed7 committed Jan 30, 2023
1 parent fc990f1 commit 9054e5b
Show file tree
Hide file tree
Showing 2 changed files with 324 additions and 19 deletions.
7 changes: 5 additions & 2 deletions cmd/localstackpopulator.go
Expand Up @@ -25,8 +25,6 @@ var lspop = &cobra.Command{
log.Fatal("err: ", err)
}

// pop.ExploreAws(sess)

errCB := pop.CreateBuckets(sess)
if errCB != nil {
log.Fatal("err: ", errCB)
Expand Down Expand Up @@ -59,6 +57,11 @@ var lspop = &cobra.Command{
if errCKP != nil {
log.Fatal("err: ", errCKP)
}

errIAM := pop.IamAwsSrv(sess)
if errIAM != nil {
log.Fatal("err: ", errIAM)
}
},
}

Expand Down

0 comments on commit 9054e5b

Please sign in to comment.