Skip to content

Commit

Permalink
Merge pull request #82 from turbot/release/v1.1.0
Browse files Browse the repository at this point in the history
Release/v1.1.0
  • Loading branch information
misraved authored Dec 13, 2024
2 parents 4dd60a4 + 0f458a1 commit 175fae2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## v1.0.0 (2024-10-22)
## v1.1.0 [2024-12-13]

_What's new?_

- New pipelines added
- `generate_iam_credential_report`

## v1.0.0 [2024-10-22]

_Breaking changes_

Expand Down
24 changes: 24 additions & 0 deletions pipelines/iam/generate_iam_credential_report.fp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
pipeline "generate_iam_credential_report" {
title = "Generate IAM Credential Report"
description = "Generates the IAM Credential Report."

param "conn" {
type = connection.aws
description = local.conn_param_description
default = connection.aws.default
}

step "container" "generate_iam_credential_report" {
image = "public.ecr.aws/aws-cli/aws-cli"
cmd = [
"iam",
"generate-credential-report"
]
env = param.conn.env
}

output "status" {
description = "A structure with status details about the credentials report generates."
value = jsondecode(step.container.generate_iam_credential_report.stdout)
}
}

0 comments on commit 175fae2

Please sign in to comment.