func()

in internal/fabric/config.go [110:124]


func (f *FastConfig) SetGroups(g string) {
	var grp Groups

	// TODO: check if group exists first

	// TODO: this should be targeted to each field with reflection loop
	grp.Gcp_Billing_Admins = g
	grp.Gcp_Devops = g
	grp.Gcp_Network_Admins = g
	grp.Gcp_Organization_Admins = g
	grp.Gcp_Security_Admins = g
	grp.Gcp_Support = g

	f.Groups = &grp
}