We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d3aeb commit cd1a2b7Copy full SHA for cd1a2b7
modules/sso_groups/outputs.tf
@@ -1,4 +1,4 @@
1
-output "sso_group_IDs" {
+output "sso_group_ids" {
2
description = "A map of SSO groups IDs created by this module"
3
value = { for k, v in aws_identitystore_group.this : k => v.group_id }
4
modules/sso_groups/variables.tf
@@ -1,4 +1,9 @@
variable "sso_groups" {
+ description = <<EOF
+ A map of objects defining AWS SSO groups to be created. Each object contains:
+ - group_name: The name of the SSO group.
5
+ - group_description: A description for the SSO group.
6
+ EOF
7
type = map(object(
8
{
9
group_name = string
0 commit comments