diff --git a/VERSION b/VERSION index bfae021..cb925bf 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -v0.7.0 -Migrate to go modules. +v0.7.1 +Add team tag to activities \ No newline at end of file diff --git a/cmd/sfncli/sfncli.go b/cmd/sfncli/sfncli.go index bec446b..453cb60 100644 --- a/cmd/sfncli/sfncli.go +++ b/cmd/sfncli/sfncli.go @@ -232,6 +232,9 @@ func tagsFromEnv() []*sfn.Tag { if account := os.Getenv("_POD_ACCOUNT"); account != "" { tags = append(tags, &sfn.Tag{Key: aws.String("pod-account"), Value: aws.String(account)}) } + if team := os.Getenv("_TEAM_OWNER"); team != "" { + tags = append(tags, &sfn.Tag{Key: aws.String("team"), Value: aws.String(team)}) + } return tags }