platform.Group
Explore with Pulumi AI
Provides a group resource to create and manage groups, and manages membership. A group represents a role and is used with RBAC (Role-Based Access Control) rules. See JFrog documentation for more details.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as platform from "@pulumi/platform";
const my_group = new platform.Group("my-group", {
adminPrivileges: false,
autoJoin: true,
description: "My group",
externalId: "My Azure ID",
members: ["admin"],
});
import pulumi
import pulumi_platform as platform
my_group = platform.Group("my-group",
admin_privileges=False,
auto_join=True,
description="My group",
external_id="My Azure ID",
members=["admin"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/platform/v2/platform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := platform.NewGroup(ctx, "my-group", &platform.GroupArgs{
AdminPrivileges: pulumi.Bool(false),
AutoJoin: pulumi.Bool(true),
Description: pulumi.String("My group"),
ExternalId: pulumi.String("My Azure ID"),
Members: pulumi.StringArray{
pulumi.String("admin"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Platform = Pulumi.Platform;
return await Deployment.RunAsync(() =>
{
var my_group = new Platform.Group("my-group", new()
{
AdminPrivileges = false,
AutoJoin = true,
Description = "My group",
ExternalId = "My Azure ID",
Members = new[]
{
"admin",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.platform.Group;
import com.pulumi.platform.GroupArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var my_group = new Group("my-group", GroupArgs.builder()
.adminPrivileges(false)
.autoJoin(true)
.description("My group")
.externalId("My Azure ID")
.members("admin")
.build());
}
}
resources:
my-group:
type: platform:Group
properties:
adminPrivileges: false
autoJoin: true
description: My group
externalId: My Azure ID
members:
- admin
Create Group Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Group(name: string, args?: GroupArgs, opts?: CustomResourceOptions);
@overload
def Group(resource_name: str,
args: Optional[GroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Group(resource_name: str,
opts: Optional[ResourceOptions] = None,
admin_privileges: Optional[bool] = None,
auto_join: Optional[bool] = None,
description: Optional[str] = None,
external_id: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
use_group_members_resource: Optional[bool] = None)
func NewGroup(ctx *Context, name string, args *GroupArgs, opts ...ResourceOption) (*Group, error)
public Group(string name, GroupArgs? args = null, CustomResourceOptions? opts = null)
type: platform:Group
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var groupResource = new Platform.Group("groupResource", new()
{
AdminPrivileges = false,
AutoJoin = false,
Description = "string",
ExternalId = "string",
Name = "string",
UseGroupMembersResource = false,
});
example, err := platform.NewGroup(ctx, "groupResource", &platform.GroupArgs{
AdminPrivileges: pulumi.Bool(false),
AutoJoin: pulumi.Bool(false),
Description: pulumi.String("string"),
ExternalId: pulumi.String("string"),
Name: pulumi.String("string"),
UseGroupMembersResource: pulumi.Bool(false),
})
var groupResource = new Group("groupResource", GroupArgs.builder()
.adminPrivileges(false)
.autoJoin(false)
.description("string")
.externalId("string")
.name("string")
.useGroupMembersResource(false)
.build());
group_resource = platform.Group("groupResource",
admin_privileges=False,
auto_join=False,
description="string",
external_id="string",
name="string",
use_group_members_resource=False)
const groupResource = new platform.Group("groupResource", {
adminPrivileges: false,
autoJoin: false,
description: "string",
externalId: "string",
name: "string",
useGroupMembersResource: false,
});
type: platform:Group
properties:
adminPrivileges: false
autoJoin: false
description: string
externalId: string
name: string
useGroupMembersResource: false
Group Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Group resource accepts the following input properties:
- Admin
Privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- Auto
Join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- Description string
- A description for the group.
- External
Id string - New external group ID used to configure the corresponding group in Azure AD.
- Members List<string>
- List of users assigned to the group.
- Name string
- Name of the group.
- Use
Group boolMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- Admin
Privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- Auto
Join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- Description string
- A description for the group.
- External
Id string - New external group ID used to configure the corresponding group in Azure AD.
- Members []string
- List of users assigned to the group.
- Name string
- Name of the group.
- Use
Group boolMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges Boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join Boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description String
- A description for the group.
- external
Id String - New external group ID used to configure the corresponding group in Azure AD.
- members List<String>
- List of users assigned to the group.
- name String
- Name of the group.
- use
Group BooleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description string
- A description for the group.
- external
Id string - New external group ID used to configure the corresponding group in Azure AD.
- members string[]
- List of users assigned to the group.
- name string
- Name of the group.
- use
Group booleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin_
privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto_
join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description str
- A description for the group.
- external_
id str - New external group ID used to configure the corresponding group in Azure AD.
- members Sequence[str]
- List of users assigned to the group.
- name str
- Name of the group.
- use_
group_ boolmembers_ resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges Boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join Boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description String
- A description for the group.
- external
Id String - New external group ID used to configure the corresponding group in Azure AD.
- members List<String>
- List of users assigned to the group.
- name String
- Name of the group.
- use
Group BooleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Realm string
- The realm for the group.
- Realm
Attributes string - The realm for the group.
- Id string
- The provider-assigned unique ID for this managed resource.
- Realm string
- The realm for the group.
- Realm
Attributes string - The realm for the group.
- id String
- The provider-assigned unique ID for this managed resource.
- realm String
- The realm for the group.
- realm
Attributes String - The realm for the group.
- id string
- The provider-assigned unique ID for this managed resource.
- realm string
- The realm for the group.
- realm
Attributes string - The realm for the group.
- id str
- The provider-assigned unique ID for this managed resource.
- realm str
- The realm for the group.
- realm_
attributes str - The realm for the group.
- id String
- The provider-assigned unique ID for this managed resource.
- realm String
- The realm for the group.
- realm
Attributes String - The realm for the group.
Look up Existing Group Resource
Get an existing Group resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GroupState, opts?: CustomResourceOptions): Group
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_privileges: Optional[bool] = None,
auto_join: Optional[bool] = None,
description: Optional[str] = None,
external_id: Optional[str] = None,
members: Optional[Sequence[str]] = None,
name: Optional[str] = None,
realm: Optional[str] = None,
realm_attributes: Optional[str] = None,
use_group_members_resource: Optional[bool] = None) -> Group
func GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)
public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)
public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)
resources: _: type: platform:Group get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Admin
Privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- Auto
Join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- Description string
- A description for the group.
- External
Id string - New external group ID used to configure the corresponding group in Azure AD.
- Members List<string>
- List of users assigned to the group.
- Name string
- Name of the group.
- Realm string
- The realm for the group.
- Realm
Attributes string - The realm for the group.
- Use
Group boolMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- Admin
Privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- Auto
Join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- Description string
- A description for the group.
- External
Id string - New external group ID used to configure the corresponding group in Azure AD.
- Members []string
- List of users assigned to the group.
- Name string
- Name of the group.
- Realm string
- The realm for the group.
- Realm
Attributes string - The realm for the group.
- Use
Group boolMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges Boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join Boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description String
- A description for the group.
- external
Id String - New external group ID used to configure the corresponding group in Azure AD.
- members List<String>
- List of users assigned to the group.
- name String
- Name of the group.
- realm String
- The realm for the group.
- realm
Attributes String - The realm for the group.
- use
Group BooleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description string
- A description for the group.
- external
Id string - New external group ID used to configure the corresponding group in Azure AD.
- members string[]
- List of users assigned to the group.
- name string
- Name of the group.
- realm string
- The realm for the group.
- realm
Attributes string - The realm for the group.
- use
Group booleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin_
privileges bool - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto_
join bool - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description str
- A description for the group.
- external_
id str - New external group ID used to configure the corresponding group in Azure AD.
- members Sequence[str]
- List of users assigned to the group.
- name str
- Name of the group.
- realm str
- The realm for the group.
- realm_
attributes str - The realm for the group.
- use_
group_ boolmembers_ resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
- admin
Privileges Boolean - Any users added to this group will automatically be assigned with admin privileges in the system.
- auto
Join Boolean - When this parameter is set, any new users defined in the system are automatically assigned to this group.
- description String
- A description for the group.
- external
Id String - New external group ID used to configure the corresponding group in Azure AD.
- members List<String>
- List of users assigned to the group.
- name String
- Name of the group.
- realm String
- The realm for the group.
- realm
Attributes String - The realm for the group.
- use
Group BooleanMembers Resource - When set to
true
, this resource will ignore themembers
attributes and allow memberships to be managed byplatform.GroupMembers
resource instead. Default value istrue
.
Import
$ pulumi import platform:index/group:Group my-group my-group
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- platform jfrog/terraform-provider-platform
- License
- Notes
- This Pulumi package is based on the
platform
Terraform Provider.