Skip to content

Commit 175fae2

Browse files
authored
Merge pull request #82 from turbot/release/v1.1.0
Release/v1.1.0
2 parents 4dd60a4 + 0f458a1 commit 175fae2

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## v1.0.0 (2024-10-22)
1+
## v1.1.0 [2024-12-13]
2+
3+
_What's new?_
4+
5+
- New pipelines added
6+
- `generate_iam_credential_report`
7+
8+
## v1.0.0 [2024-10-22]
29

310
_Breaking changes_
411

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pipeline "generate_iam_credential_report" {
2+
title = "Generate IAM Credential Report"
3+
description = "Generates the IAM Credential Report."
4+
5+
param "conn" {
6+
type = connection.aws
7+
description = local.conn_param_description
8+
default = connection.aws.default
9+
}
10+
11+
step "container" "generate_iam_credential_report" {
12+
image = "public.ecr.aws/aws-cli/aws-cli"
13+
cmd = [
14+
"iam",
15+
"generate-credential-report"
16+
]
17+
env = param.conn.env
18+
}
19+
20+
output "status" {
21+
description = "A structure with status details about the credentials report generates."
22+
value = jsondecode(step.container.generate_iam_credential_report.stdout)
23+
}
24+
}

0 commit comments

Comments
 (0)