Removed the other tools and fixed the README.md file

This commit is contained in:
Leon Mika 2023-02-23 21:45:50 +11:00
parent ab309084c5
commit 937af987e6
41 changed files with 12 additions and 2006 deletions

View file

@ -1,30 +0,0 @@
package main
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/ssm"
"github.com/aws/aws-sdk-go-v2/service/ssm/types"
"github.com/lmika/gopkgs/cli"
)
func main() {
ctx := context.Background()
cfg, err := config.LoadDefaultConfig(ctx)
if err != nil {
cli.Fatalf("cannot load AWS config: %v", err)
}
ssmClient := ssm.NewFromConfig(cfg,
ssm.WithEndpointResolver(ssm.EndpointResolverFromURL("http://localhost:4566")))
if _, err := ssmClient.PutParameter(ctx, &ssm.PutParameterInput{
Name: aws.String("/alpha/bravo"),
Type: types.ParameterTypeString,
Value: aws.String("This is a parameter value"),
}); err != nil {
cli.Fatal(err)
}
}