You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This schema change is needed for implementation of a data source for JAAS groups. We already have a resource for them and the schema attributes are exactly the same.
Details
"name": schema.StringAttribute{
Description: "The name of the group.",
Required: true,
},
"uuid": schema.StringAttribute{
Description: "The UUID of the group.",
Computed: true,
},
The JAAS group resource takes a name to create a group, so for ease of use this data source also takes in the attribute already known to users and fetches the UUID from JAAS.
Example terraform plan
resource"juju_jaas_group""test" {
name="group-0"
}
// --------------- Second plan that uses the data source to use the group from plan #1data"juju_jaas_group""test" {
name="group-0"
}
Notes & References
No response
The text was updated successfully, but these errors were encountered:
pkulik0
changed the title
JAAS group data source
Schema: JAAS group data source
Oct 9, 2024
Type of change
Adding new schema
Description
This schema change is needed for implementation of a data source for JAAS groups. We already have a resource for them and the schema attributes are exactly the same.
Details
The JAAS group resource takes a name to create a group, so for ease of use this data source also takes in the attribute already known to users and fetches the UUID from JAAS.
Example terraform plan
Notes & References
No response
The text was updated successfully, but these errors were encountered: