File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments