Skip to content

Commit cd1a2b7

Browse files
committed
chore: apply tflint
1 parent 97d3aeb commit cd1a2b7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

modules/sso_groups/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
output "sso_group_IDs" {
1+
output "sso_group_ids" {
22
description = "A map of SSO groups IDs created by this module"
33
value = { for k, v in aws_identitystore_group.this : k => v.group_id }
44

modules/sso_groups/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
variable "sso_groups" {
2+
description = <<EOF
3+
A map of objects defining AWS SSO groups to be created. Each object contains:
4+
- group_name: The name of the SSO group.
5+
- group_description: A description for the SSO group.
6+
EOF
27
type = map(object(
38
{
49
group_name = string

0 commit comments

Comments
 (0)