scaleway.iam.GroupMembership
Explore with Pulumi AI
Add members to an IAM group. For more information refer to the IAM API documentation.
Example Usage
Application Membership
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const group = new scaleway.iam.Group("group", {
name: "my_group",
externalMembership: true,
});
const app = new scaleway.iam.Application("app", {name: "my_app"});
const member = new scaleway.iam.GroupMembership("member", {
groupId: group.id,
applicationId: app.id,
});
import pulumi
import pulumiverse_scaleway as scaleway
group = scaleway.iam.Group("group",
name="my_group",
external_membership=True)
app = scaleway.iam.Application("app", name="my_app")
member = scaleway.iam.GroupMembership("member",
group_id=group.id,
application_id=app.id)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/iam"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
group, err := iam.NewGroup(ctx, "group", &iam.GroupArgs{
Name: pulumi.String("my_group"),
ExternalMembership: pulumi.Bool(true),
})
if err != nil {
return err
}
app, err := iam.NewApplication(ctx, "app", &iam.ApplicationArgs{
Name: pulumi.String("my_app"),
})
if err != nil {
return err
}
_, err = iam.NewGroupMembership(ctx, "member", &iam.GroupMembershipArgs{
GroupId: group.ID(),
ApplicationId: app.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var @group = new Scaleway.Iam.Group("group", new()
{
Name = "my_group",
ExternalMembership = true,
});
var app = new Scaleway.Iam.Application("app", new()
{
Name = "my_app",
});
var member = new Scaleway.Iam.GroupMembership("member", new()
{
GroupId = @group.Id,
ApplicationId = app.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.iam.Group;
import com.pulumi.scaleway.iam.GroupArgs;
import com.pulumi.scaleway.iam.Application;
import com.pulumi.scaleway.iam.ApplicationArgs;
import com.pulumi.scaleway.iam.GroupMembership;
import com.pulumi.scaleway.iam.GroupMembershipArgs;
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 group = new Group("group", GroupArgs.builder()
.name("my_group")
.externalMembership(true)
.build());
var app = new Application("app", ApplicationArgs.builder()
.name("my_app")
.build());
var member = new GroupMembership("member", GroupMembershipArgs.builder()
.groupId(group.id())
.applicationId(app.id())
.build());
}
}
resources:
group:
type: scaleway:iam:Group
properties:
name: my_group
externalMembership: true
app:
type: scaleway:iam:Application
properties:
name: my_app
member:
type: scaleway:iam:GroupMembership
properties:
groupId: ${group.id}
applicationId: ${app.id}
Create GroupMembership Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GroupMembership(name: string, args: GroupMembershipArgs, opts?: CustomResourceOptions);
@overload
def GroupMembership(resource_name: str,
args: GroupMembershipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GroupMembership(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_id: Optional[str] = None,
application_id: Optional[str] = None,
user_id: Optional[str] = None)
func NewGroupMembership(ctx *Context, name string, args GroupMembershipArgs, opts ...ResourceOption) (*GroupMembership, error)
public GroupMembership(string name, GroupMembershipArgs args, CustomResourceOptions? opts = null)
public GroupMembership(String name, GroupMembershipArgs args)
public GroupMembership(String name, GroupMembershipArgs args, CustomResourceOptions options)
type: scaleway:iam:GroupMembership
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 GroupMembershipArgs
- 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 GroupMembershipArgs
- 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 GroupMembershipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupMembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupMembershipArgs
- 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 groupMembershipResource = new Scaleway.Iam.GroupMembership("groupMembershipResource", new()
{
GroupId = "string",
ApplicationId = "string",
UserId = "string",
});
example, err := iam.NewGroupMembership(ctx, "groupMembershipResource", &iam.GroupMembershipArgs{
GroupId: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
UserId: pulumi.String("string"),
})
var groupMembershipResource = new GroupMembership("groupMembershipResource", GroupMembershipArgs.builder()
.groupId("string")
.applicationId("string")
.userId("string")
.build());
group_membership_resource = scaleway.iam.GroupMembership("groupMembershipResource",
group_id="string",
application_id="string",
user_id="string")
const groupMembershipResource = new scaleway.iam.GroupMembership("groupMembershipResource", {
groupId: "string",
applicationId: "string",
userId: "string",
});
type: scaleway:iam:GroupMembership
properties:
applicationId: string
groupId: string
userId: string
GroupMembership 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 GroupMembership resource accepts the following input properties:
- Group
Id string - ID of the group to add members to.
- Application
Id string - The ID of the application that will be added to the group.
- User
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- Group
Id string - ID of the group to add members to.
- Application
Id string - The ID of the application that will be added to the group.
- User
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- group
Id String - ID of the group to add members to.
- application
Id String - The ID of the application that will be added to the group.
- user
Id String The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- group
Id string - ID of the group to add members to.
- application
Id string - The ID of the application that will be added to the group.
- user
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- group_
id str - ID of the group to add members to.
- application_
id str - The ID of the application that will be added to the group.
- user_
id str The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- group
Id String - ID of the group to add members to.
- application
Id String - The ID of the application that will be added to the group.
- user
Id String The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
Outputs
All input properties are implicitly available as output properties. Additionally, the GroupMembership resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GroupMembership Resource
Get an existing GroupMembership 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?: GroupMembershipState, opts?: CustomResourceOptions): GroupMembership
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
group_id: Optional[str] = None,
user_id: Optional[str] = None) -> GroupMembership
func GetGroupMembership(ctx *Context, name string, id IDInput, state *GroupMembershipState, opts ...ResourceOption) (*GroupMembership, error)
public static GroupMembership Get(string name, Input<string> id, GroupMembershipState? state, CustomResourceOptions? opts = null)
public static GroupMembership get(String name, Output<String> id, GroupMembershipState state, CustomResourceOptions options)
resources: _: type: scaleway:iam:GroupMembership 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.
- Application
Id string - The ID of the application that will be added to the group.
- Group
Id string - ID of the group to add members to.
- User
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- Application
Id string - The ID of the application that will be added to the group.
- Group
Id string - ID of the group to add members to.
- User
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id String - The ID of the application that will be added to the group.
- group
Id String - ID of the group to add members to.
- user
Id String The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id string - The ID of the application that will be added to the group.
- group
Id string - ID of the group to add members to.
- user
Id string The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- application_
id str - The ID of the application that will be added to the group.
- group_
id str - ID of the group to add members to.
- user_
id str The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
- application
Id String - The ID of the application that will be added to the group.
- group
Id String - ID of the group to add members to.
- user
Id String The ID of the user that will be added to the group
Note You must specify at least one:
application_id
and/oruser_id
.
Import
IAM group memberships can be imported using two format:
For user:
{group_id}/user/{user_id}
For application:
{group_id}/app/{application_id}
bash
$ pulumi import scaleway:iam/groupMembership:GroupMembership app 11111111-1111-1111-1111-111111111111/app/11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.