1. Packages
  2. Scaleway
  3. API Docs
  4. IamPolicy
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

scaleway.IamPolicy

Explore with Pulumi AI

scaleway logo
Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse

    Creates and manages Scaleway IAM Policies. For more information, see the documentation.

    You can find a detailed list of all permission sets available at Scaleway in the permission sets reference page.

    Example Usage

    Create a policy for an organization’s project

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumi/scaleway";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const default = scaleway.getAccountProject({
        name: "default",
    });
    const app = new scaleway.IamApplication("app", {});
    const objectReadOnly = new scaleway.IamPolicy("objectReadOnly", {
        description: "gives app readonly access to object storage in project",
        applicationId: app.id,
        rules: [{
            projectIds: [_default.then(_default => _default.id)],
            permissionSetNames: ["ObjectStorageReadOnly"],
        }],
    });
    
    import pulumi
    import pulumi_scaleway as scaleway
    import pulumiverse_scaleway as scaleway
    
    default = scaleway.get_account_project(name="default")
    app = scaleway.IamApplication("app")
    object_read_only = scaleway.IamPolicy("objectReadOnly",
        description="gives app readonly access to object storage in project",
        application_id=app.id,
        rules=[scaleway.IamPolicyRuleArgs(
            project_ids=[default.id],
            permission_set_names=["ObjectStorageReadOnly"],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_default, err := scaleway.LookupAccountProject(ctx, &scaleway.LookupAccountProjectArgs{
    			Name: pulumi.StringRef("default"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		app, err := scaleway.NewIamApplication(ctx, "app", nil)
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewIamPolicy(ctx, "objectReadOnly", &scaleway.IamPolicyArgs{
    			Description:   pulumi.String("gives app readonly access to object storage in project"),
    			ApplicationId: app.ID(),
    			Rules: scaleway.IamPolicyRuleArray{
    				&scaleway.IamPolicyRuleArgs{
    					ProjectIds: pulumi.StringArray{
    						pulumi.String(_default.Id),
    					},
    					PermissionSetNames: pulumi.StringArray{
    						pulumi.String("ObjectStorageReadOnly"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scaleway = Pulumi.Scaleway;
    using Scaleway = Pulumiverse.Scaleway;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = Scaleway.GetAccountProject.Invoke(new()
        {
            Name = "default",
        });
    
        var app = new Scaleway.IamApplication("app");
    
        var objectReadOnly = new Scaleway.IamPolicy("objectReadOnly", new()
        {
            Description = "gives app readonly access to object storage in project",
            ApplicationId = app.Id,
            Rules = new[]
            {
                new Scaleway.Inputs.IamPolicyRuleArgs
                {
                    ProjectIds = new[]
                    {
                        @default.Apply(@default => @default.Apply(getAccountProjectResult => getAccountProjectResult.Id)),
                    },
                    PermissionSetNames = new[]
                    {
                        "ObjectStorageReadOnly",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.ScalewayFunctions;
    import com.pulumi.scaleway.inputs.GetAccountProjectArgs;
    import com.pulumi.scaleway.IamApplication;
    import com.pulumi.scaleway.IamPolicy;
    import com.pulumi.scaleway.IamPolicyArgs;
    import com.pulumi.scaleway.inputs.IamPolicyRuleArgs;
    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) {
            final var default = ScalewayFunctions.getAccountProject(GetAccountProjectArgs.builder()
                .name("default")
                .build());
    
            var app = new IamApplication("app");
    
            var objectReadOnly = new IamPolicy("objectReadOnly", IamPolicyArgs.builder()        
                .description("gives app readonly access to object storage in project")
                .applicationId(app.id())
                .rules(IamPolicyRuleArgs.builder()
                    .projectIds(default_.id())
                    .permissionSetNames("ObjectStorageReadOnly")
                    .build())
                .build());
    
        }
    }
    
    resources:
      app:
        type: scaleway:IamApplication
      objectReadOnly:
        type: scaleway:IamPolicy
        properties:
          description: gives app readonly access to object storage in project
          applicationId: ${app.id}
          rules:
            - projectIds:
                - ${default.id}
              permissionSetNames:
                - ObjectStorageReadOnly
    variables:
      default:
        fn::invoke:
          Function: scaleway:getAccountProject
          Arguments:
            name: default
    

    Create a policy for all current and future projects in an organization

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const app = new scaleway.IamApplication("app", {});
    const objectReadOnly = new scaleway.IamPolicy("objectReadOnly", {
        description: "gives app readonly access to object storage in project",
        applicationId: app.id,
        rules: [{
            organizationId: app.organizationId,
            permissionSetNames: ["ObjectStorageReadOnly"],
        }],
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    app = scaleway.IamApplication("app")
    object_read_only = scaleway.IamPolicy("objectReadOnly",
        description="gives app readonly access to object storage in project",
        application_id=app.id,
        rules=[scaleway.IamPolicyRuleArgs(
            organization_id=app.organization_id,
            permission_set_names=["ObjectStorageReadOnly"],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		app, err := scaleway.NewIamApplication(ctx, "app", nil)
    		if err != nil {
    			return err
    		}
    		_, err = scaleway.NewIamPolicy(ctx, "objectReadOnly", &scaleway.IamPolicyArgs{
    			Description:   pulumi.String("gives app readonly access to object storage in project"),
    			ApplicationId: app.ID(),
    			Rules: scaleway.IamPolicyRuleArray{
    				&scaleway.IamPolicyRuleArgs{
    					OrganizationId: app.OrganizationId,
    					PermissionSetNames: pulumi.StringArray{
    						pulumi.String("ObjectStorageReadOnly"),
    					},
    				},
    			},
    		})
    		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 app = new Scaleway.IamApplication("app");
    
        var objectReadOnly = new Scaleway.IamPolicy("objectReadOnly", new()
        {
            Description = "gives app readonly access to object storage in project",
            ApplicationId = app.Id,
            Rules = new[]
            {
                new Scaleway.Inputs.IamPolicyRuleArgs
                {
                    OrganizationId = app.OrganizationId,
                    PermissionSetNames = new[]
                    {
                        "ObjectStorageReadOnly",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.IamApplication;
    import com.pulumi.scaleway.IamPolicy;
    import com.pulumi.scaleway.IamPolicyArgs;
    import com.pulumi.scaleway.inputs.IamPolicyRuleArgs;
    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 app = new IamApplication("app");
    
            var objectReadOnly = new IamPolicy("objectReadOnly", IamPolicyArgs.builder()        
                .description("gives app readonly access to object storage in project")
                .applicationId(app.id())
                .rules(IamPolicyRuleArgs.builder()
                    .organizationId(app.organizationId())
                    .permissionSetNames("ObjectStorageReadOnly")
                    .build())
                .build());
    
        }
    }
    
    resources:
      app:
        type: scaleway:IamApplication
      objectReadOnly:
        type: scaleway:IamPolicy
        properties:
          description: gives app readonly access to object storage in project
          applicationId: ${app.id}
          rules:
            - organizationId: ${app.organizationId}
              permissionSetNames:
                - ObjectStorageReadOnly
    

    Create IamPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IamPolicy(name: string, args: IamPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def IamPolicy(resource_name: str,
                  args: IamPolicyArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def IamPolicy(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  rules: Optional[Sequence[IamPolicyRuleArgs]] = None,
                  application_id: Optional[str] = None,
                  description: Optional[str] = None,
                  group_id: Optional[str] = None,
                  name: Optional[str] = None,
                  no_principal: Optional[bool] = None,
                  organization_id: Optional[str] = None,
                  tags: Optional[Sequence[str]] = None,
                  user_id: Optional[str] = None)
    func NewIamPolicy(ctx *Context, name string, args IamPolicyArgs, opts ...ResourceOption) (*IamPolicy, error)
    public IamPolicy(string name, IamPolicyArgs args, CustomResourceOptions? opts = null)
    public IamPolicy(String name, IamPolicyArgs args)
    public IamPolicy(String name, IamPolicyArgs args, CustomResourceOptions options)
    
    type: scaleway:IamPolicy
    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 IamPolicyArgs
    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 IamPolicyArgs
    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 IamPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IamPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IamPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var iamPolicyResource = new Scaleway.IamPolicy("iamPolicyResource", new()
    {
        Rules = new[]
        {
            new Scaleway.Inputs.IamPolicyRuleArgs
            {
                PermissionSetNames = new[]
                {
                    "string",
                },
                OrganizationId = "string",
                ProjectIds = new[]
                {
                    "string",
                },
            },
        },
        ApplicationId = "string",
        Description = "string",
        GroupId = "string",
        Name = "string",
        NoPrincipal = false,
        OrganizationId = "string",
        Tags = new[]
        {
            "string",
        },
        UserId = "string",
    });
    
    example, err := scaleway.NewIamPolicy(ctx, "iamPolicyResource", &scaleway.IamPolicyArgs{
    	Rules: scaleway.IamPolicyRuleArray{
    		&scaleway.IamPolicyRuleArgs{
    			PermissionSetNames: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			OrganizationId: pulumi.String("string"),
    			ProjectIds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	ApplicationId:  pulumi.String("string"),
    	Description:    pulumi.String("string"),
    	GroupId:        pulumi.String("string"),
    	Name:           pulumi.String("string"),
    	NoPrincipal:    pulumi.Bool(false),
    	OrganizationId: pulumi.String("string"),
    	Tags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	UserId: pulumi.String("string"),
    })
    
    var iamPolicyResource = new IamPolicy("iamPolicyResource", IamPolicyArgs.builder()        
        .rules(IamPolicyRuleArgs.builder()
            .permissionSetNames("string")
            .organizationId("string")
            .projectIds("string")
            .build())
        .applicationId("string")
        .description("string")
        .groupId("string")
        .name("string")
        .noPrincipal(false)
        .organizationId("string")
        .tags("string")
        .userId("string")
        .build());
    
    iam_policy_resource = scaleway.IamPolicy("iamPolicyResource",
        rules=[scaleway.IamPolicyRuleArgs(
            permission_set_names=["string"],
            organization_id="string",
            project_ids=["string"],
        )],
        application_id="string",
        description="string",
        group_id="string",
        name="string",
        no_principal=False,
        organization_id="string",
        tags=["string"],
        user_id="string")
    
    const iamPolicyResource = new scaleway.IamPolicy("iamPolicyResource", {
        rules: [{
            permissionSetNames: ["string"],
            organizationId: "string",
            projectIds: ["string"],
        }],
        applicationId: "string",
        description: "string",
        groupId: "string",
        name: "string",
        noPrincipal: false,
        organizationId: "string",
        tags: ["string"],
        userId: "string",
    });
    
    type: scaleway:IamPolicy
    properties:
        applicationId: string
        description: string
        groupId: string
        name: string
        noPrincipal: false
        organizationId: string
        rules:
            - organizationId: string
              permissionSetNames:
                - string
              projectIds:
                - string
        tags:
            - string
        userId: string
    

    IamPolicy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The IamPolicy resource accepts the following input properties:

    Rules List<Pulumiverse.Scaleway.Inputs.IamPolicyRule>
    List of rules in the policy.
    ApplicationId string
    ID of the Application the policy will be linked to
    Description string
    The description of the iam policy.
    GroupId string
    ID of the Group the policy will be linked to
    Name string
    The name of the iam policy.
    NoPrincipal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    Tags List<string>
    The tags associated with the iam policy.
    UserId string
    ID of the User the policy will be linked to
    Rules []IamPolicyRuleArgs
    List of rules in the policy.
    ApplicationId string
    ID of the Application the policy will be linked to
    Description string
    The description of the iam policy.
    GroupId string
    ID of the Group the policy will be linked to
    Name string
    The name of the iam policy.
    NoPrincipal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    Tags []string
    The tags associated with the iam policy.
    UserId string
    ID of the User the policy will be linked to
    rules List<IamPolicyRule>
    List of rules in the policy.
    applicationId String
    ID of the Application the policy will be linked to
    description String
    The description of the iam policy.
    groupId String
    ID of the Group the policy will be linked to
    name String
    The name of the iam policy.
    noPrincipal Boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    tags List<String>
    The tags associated with the iam policy.
    userId String
    ID of the User the policy will be linked to
    rules IamPolicyRule[]
    List of rules in the policy.
    applicationId string
    ID of the Application the policy will be linked to
    description string
    The description of the iam policy.
    groupId string
    ID of the Group the policy will be linked to
    name string
    The name of the iam policy.
    noPrincipal boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    tags string[]
    The tags associated with the iam policy.
    userId string
    ID of the User the policy will be linked to
    rules Sequence[IamPolicyRuleArgs]
    List of rules in the policy.
    application_id str
    ID of the Application the policy will be linked to
    description str
    The description of the iam policy.
    group_id str
    ID of the Group the policy will be linked to
    name str
    The name of the iam policy.
    no_principal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organization_id str
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    tags Sequence[str]
    The tags associated with the iam policy.
    user_id str
    ID of the User the policy will be linked to
    rules List<Property Map>
    List of rules in the policy.
    applicationId String
    ID of the Application the policy will be linked to
    description String
    The description of the iam policy.
    groupId String
    ID of the Group the policy will be linked to
    name String
    The name of the iam policy.
    noPrincipal Boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    tags List<String>
    The tags associated with the iam policy.
    userId String
    ID of the User the policy will be linked to

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IamPolicy resource produces the following output properties:

    CreatedAt string
    The date and time of the creation of the policy.
    Editable bool
    Whether the policy is editable.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the policy.
    CreatedAt string
    The date and time of the creation of the policy.
    Editable bool
    Whether the policy is editable.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    The date and time of the last update of the policy.
    createdAt String
    The date and time of the creation of the policy.
    editable Boolean
    Whether the policy is editable.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the policy.
    createdAt string
    The date and time of the creation of the policy.
    editable boolean
    Whether the policy is editable.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    The date and time of the last update of the policy.
    created_at str
    The date and time of the creation of the policy.
    editable bool
    Whether the policy is editable.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    The date and time of the last update of the policy.
    createdAt String
    The date and time of the creation of the policy.
    editable Boolean
    Whether the policy is editable.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    The date and time of the last update of the policy.

    Look up Existing IamPolicy Resource

    Get an existing IamPolicy 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?: IamPolicyState, opts?: CustomResourceOptions): IamPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            editable: Optional[bool] = None,
            group_id: Optional[str] = None,
            name: Optional[str] = None,
            no_principal: Optional[bool] = None,
            organization_id: Optional[str] = None,
            rules: Optional[Sequence[IamPolicyRuleArgs]] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[str] = None,
            user_id: Optional[str] = None) -> IamPolicy
    func GetIamPolicy(ctx *Context, name string, id IDInput, state *IamPolicyState, opts ...ResourceOption) (*IamPolicy, error)
    public static IamPolicy Get(string name, Input<string> id, IamPolicyState? state, CustomResourceOptions? opts = null)
    public static IamPolicy get(String name, Output<String> id, IamPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    ApplicationId string
    ID of the Application the policy will be linked to
    CreatedAt string
    The date and time of the creation of the policy.
    Description string
    The description of the iam policy.
    Editable bool
    Whether the policy is editable.
    GroupId string
    ID of the Group the policy will be linked to
    Name string
    The name of the iam policy.
    NoPrincipal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    Rules List<Pulumiverse.Scaleway.Inputs.IamPolicyRule>
    List of rules in the policy.
    Tags List<string>
    The tags associated with the iam policy.
    UpdatedAt string
    The date and time of the last update of the policy.
    UserId string
    ID of the User the policy will be linked to
    ApplicationId string
    ID of the Application the policy will be linked to
    CreatedAt string
    The date and time of the creation of the policy.
    Description string
    The description of the iam policy.
    Editable bool
    Whether the policy is editable.
    GroupId string
    ID of the Group the policy will be linked to
    Name string
    The name of the iam policy.
    NoPrincipal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    Rules []IamPolicyRuleArgs
    List of rules in the policy.
    Tags []string
    The tags associated with the iam policy.
    UpdatedAt string
    The date and time of the last update of the policy.
    UserId string
    ID of the User the policy will be linked to
    applicationId String
    ID of the Application the policy will be linked to
    createdAt String
    The date and time of the creation of the policy.
    description String
    The description of the iam policy.
    editable Boolean
    Whether the policy is editable.
    groupId String
    ID of the Group the policy will be linked to
    name String
    The name of the iam policy.
    noPrincipal Boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    rules List<IamPolicyRule>
    List of rules in the policy.
    tags List<String>
    The tags associated with the iam policy.
    updatedAt String
    The date and time of the last update of the policy.
    userId String
    ID of the User the policy will be linked to
    applicationId string
    ID of the Application the policy will be linked to
    createdAt string
    The date and time of the creation of the policy.
    description string
    The description of the iam policy.
    editable boolean
    Whether the policy is editable.
    groupId string
    ID of the Group the policy will be linked to
    name string
    The name of the iam policy.
    noPrincipal boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    rules IamPolicyRule[]
    List of rules in the policy.
    tags string[]
    The tags associated with the iam policy.
    updatedAt string
    The date and time of the last update of the policy.
    userId string
    ID of the User the policy will be linked to
    application_id str
    ID of the Application the policy will be linked to
    created_at str
    The date and time of the creation of the policy.
    description str
    The description of the iam policy.
    editable bool
    Whether the policy is editable.
    group_id str
    ID of the Group the policy will be linked to
    name str
    The name of the iam policy.
    no_principal bool

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organization_id str
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    rules Sequence[IamPolicyRuleArgs]
    List of rules in the policy.
    tags Sequence[str]
    The tags associated with the iam policy.
    updated_at str
    The date and time of the last update of the policy.
    user_id str
    ID of the User the policy will be linked to
    applicationId String
    ID of the Application the policy will be linked to
    createdAt String
    The date and time of the creation of the policy.
    description String
    The description of the iam policy.
    editable Boolean
    Whether the policy is editable.
    groupId String
    ID of the Group the policy will be linked to
    name String
    The name of the iam policy.
    noPrincipal Boolean

    If the policy doesn't apply to a principal.

    Important Only one of user_id, group_id, application_id and no_principal may be set.

    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    rules List<Property Map>
    List of rules in the policy.
    tags List<String>
    The tags associated with the iam policy.
    updatedAt String
    The date and time of the last update of the policy.
    userId String
    ID of the User the policy will be linked to

    Supporting Types

    IamPolicyRule, IamPolicyRuleArgs

    PermissionSetNames List<string>

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    ProjectIds List<string>

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    PermissionSetNames []string

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    OrganizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    ProjectIds []string

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    permissionSetNames List<String>

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    projectIds List<String>

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    permissionSetNames string[]

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    organizationId string
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    projectIds string[]

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    permission_set_names Sequence[str]

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    organization_id str
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    project_ids Sequence[str]

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    permissionSetNames List<String>

    Names of permission sets bound to the rule.

    TIP: You can use the Scaleway CLI to list the permissions details. e.g:

    $ scw iam permission-set list
    
    organizationId String
    ID of organization scoped to the rule, this can be used to create a rule for all projects in an organization.
    projectIds List<String>

    List of project IDs scoped to the rule.

    Important One of organization_id or project_ids must be set per rule.

    Import

    Policies can be imported using the {id}, e.g.

    bash

    $ pulumi import scaleway:index/iamPolicy:IamPolicy main 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.
    scaleway logo
    Scaleway v1.12.1 published on Monday, Apr 15, 2024 by pulumiverse