1. Packages
  2. Scaleway
  3. API Docs
  4. mnq
  5. SnsCredentials
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

scaleway.mnq.SnsCredentials

Explore with Pulumi AI

scaleway logo
Scaleway v1.25.0 published on Saturday, Mar 22, 2025 by pulumiverse

    Creates and manages Scaleway Messaging and Queuing SNS credentials. For further information, see our main documentation

    Example Usage

    Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as scaleway from "@pulumiverse/scaleway";
    
    const main = new scaleway.mnq.Sns("main", {});
    const mainSnsCredentials = new scaleway.mnq.SnsCredentials("main", {
        projectId: main.projectId,
        name: "sns-credentials",
        permissions: {
            canManage: false,
            canReceive: true,
            canPublish: false,
        },
    });
    
    import pulumi
    import pulumiverse_scaleway as scaleway
    
    main = scaleway.mnq.Sns("main")
    main_sns_credentials = scaleway.mnq.SnsCredentials("main",
        project_id=main.project_id,
        name="sns-credentials",
        permissions={
            "can_manage": False,
            "can_receive": True,
            "can_publish": False,
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway/mnq"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		main, err := mnq.NewSns(ctx, "main", nil)
    		if err != nil {
    			return err
    		}
    		_, err = mnq.NewSnsCredentials(ctx, "main", &mnq.SnsCredentialsArgs{
    			ProjectId: main.ProjectId,
    			Name:      pulumi.String("sns-credentials"),
    			Permissions: &mnq.SnsCredentialsPermissionsArgs{
    				CanManage:  pulumi.Bool(false),
    				CanReceive: pulumi.Bool(true),
    				CanPublish: pulumi.Bool(false),
    			},
    		})
    		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 main = new Scaleway.Mnq.Sns("main");
    
        var mainSnsCredentials = new Scaleway.Mnq.SnsCredentials("main", new()
        {
            ProjectId = main.ProjectId,
            Name = "sns-credentials",
            Permissions = new Scaleway.Mnq.Inputs.SnsCredentialsPermissionsArgs
            {
                CanManage = false,
                CanReceive = true,
                CanPublish = false,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scaleway.mnq.Sns;
    import com.pulumi.scaleway.mnq.SnsCredentials;
    import com.pulumi.scaleway.mnq.SnsCredentialsArgs;
    import com.pulumi.scaleway.mnq.inputs.SnsCredentialsPermissionsArgs;
    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 main = new Sns("main");
    
            var mainSnsCredentials = new SnsCredentials("mainSnsCredentials", SnsCredentialsArgs.builder()
                .projectId(main.projectId())
                .name("sns-credentials")
                .permissions(SnsCredentialsPermissionsArgs.builder()
                    .canManage(false)
                    .canReceive(true)
                    .canPublish(false)
                    .build())
                .build());
    
        }
    }
    
    resources:
      main:
        type: scaleway:mnq:Sns
      mainSnsCredentials:
        type: scaleway:mnq:SnsCredentials
        name: main
        properties:
          projectId: ${main.projectId}
          name: sns-credentials
          permissions:
            canManage: false
            canReceive: true
            canPublish: false
    

    Create SnsCredentials Resource

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

    Constructor syntax

    new SnsCredentials(name: string, args?: SnsCredentialsArgs, opts?: CustomResourceOptions);
    @overload
    def SnsCredentials(resource_name: str,
                       args: Optional[SnsCredentialsArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SnsCredentials(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       name: Optional[str] = None,
                       permissions: Optional[SnsCredentialsPermissionsArgs] = None,
                       project_id: Optional[str] = None,
                       region: Optional[str] = None)
    func NewSnsCredentials(ctx *Context, name string, args *SnsCredentialsArgs, opts ...ResourceOption) (*SnsCredentials, error)
    public SnsCredentials(string name, SnsCredentialsArgs? args = null, CustomResourceOptions? opts = null)
    public SnsCredentials(String name, SnsCredentialsArgs args)
    public SnsCredentials(String name, SnsCredentialsArgs args, CustomResourceOptions options)
    
    type: scaleway:mnq:SnsCredentials
    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 SnsCredentialsArgs
    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 SnsCredentialsArgs
    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 SnsCredentialsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SnsCredentialsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SnsCredentialsArgs
    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 snsCredentialsResource = new Scaleway.Mnq.SnsCredentials("snsCredentialsResource", new()
    {
        Name = "string",
        Permissions = new Scaleway.Mnq.Inputs.SnsCredentialsPermissionsArgs
        {
            CanManage = false,
            CanPublish = false,
            CanReceive = false,
        },
        ProjectId = "string",
        Region = "string",
    });
    
    example, err := mnq.NewSnsCredentials(ctx, "snsCredentialsResource", &mnq.SnsCredentialsArgs{
    	Name: pulumi.String("string"),
    	Permissions: &mnq.SnsCredentialsPermissionsArgs{
    		CanManage:  pulumi.Bool(false),
    		CanPublish: pulumi.Bool(false),
    		CanReceive: pulumi.Bool(false),
    	},
    	ProjectId: pulumi.String("string"),
    	Region:    pulumi.String("string"),
    })
    
    var snsCredentialsResource = new SnsCredentials("snsCredentialsResource", SnsCredentialsArgs.builder()
        .name("string")
        .permissions(SnsCredentialsPermissionsArgs.builder()
            .canManage(false)
            .canPublish(false)
            .canReceive(false)
            .build())
        .projectId("string")
        .region("string")
        .build());
    
    sns_credentials_resource = scaleway.mnq.SnsCredentials("snsCredentialsResource",
        name="string",
        permissions={
            "can_manage": False,
            "can_publish": False,
            "can_receive": False,
        },
        project_id="string",
        region="string")
    
    const snsCredentialsResource = new scaleway.mnq.SnsCredentials("snsCredentialsResource", {
        name: "string",
        permissions: {
            canManage: false,
            canPublish: false,
            canReceive: false,
        },
        projectId: "string",
        region: "string",
    });
    
    type: scaleway:mnq:SnsCredentials
    properties:
        name: string
        permissions:
            canManage: false
            canPublish: false
            canReceive: false
        projectId: string
        region: string
    

    SnsCredentials 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 SnsCredentials resource accepts the following input properties:

    Name string
    The unique name of the SNS credentials.
    Permissions Pulumiverse.Scaleway.Mnq.Inputs.SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    ProjectId string
    project_id) The ID of the Project in which SNS is enabled.
    Region string
    region). The region in which SNS is enabled.
    Name string
    The unique name of the SNS credentials.
    Permissions SnsCredentialsPermissionsArgs
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    ProjectId string
    project_id) The ID of the Project in which SNS is enabled.
    Region string
    region). The region in which SNS is enabled.
    name String
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId String
    project_id) The ID of the Project in which SNS is enabled.
    region String
    region). The region in which SNS is enabled.
    name string
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId string
    project_id) The ID of the Project in which SNS is enabled.
    region string
    region). The region in which SNS is enabled.
    name str
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissionsArgs
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    project_id str
    project_id) The ID of the Project in which SNS is enabled.
    region str
    region). The region in which SNS is enabled.
    name String
    The unique name of the SNS credentials.
    permissions Property Map
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId String
    project_id) The ID of the Project in which SNS is enabled.
    region String
    region). The region in which SNS is enabled.

    Outputs

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

    AccessKey string
    The ID of the key.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecretKey string
    The secret value of the key.
    AccessKey string
    The ID of the key.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecretKey string
    The secret value of the key.
    accessKey String
    The ID of the key.
    id String
    The provider-assigned unique ID for this managed resource.
    secretKey String
    The secret value of the key.
    accessKey string
    The ID of the key.
    id string
    The provider-assigned unique ID for this managed resource.
    secretKey string
    The secret value of the key.
    access_key str
    The ID of the key.
    id str
    The provider-assigned unique ID for this managed resource.
    secret_key str
    The secret value of the key.
    accessKey String
    The ID of the key.
    id String
    The provider-assigned unique ID for this managed resource.
    secretKey String
    The secret value of the key.

    Look up Existing SnsCredentials Resource

    Get an existing SnsCredentials 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?: SnsCredentialsState, opts?: CustomResourceOptions): SnsCredentials
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_key: Optional[str] = None,
            name: Optional[str] = None,
            permissions: Optional[SnsCredentialsPermissionsArgs] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            secret_key: Optional[str] = None) -> SnsCredentials
    func GetSnsCredentials(ctx *Context, name string, id IDInput, state *SnsCredentialsState, opts ...ResourceOption) (*SnsCredentials, error)
    public static SnsCredentials Get(string name, Input<string> id, SnsCredentialsState? state, CustomResourceOptions? opts = null)
    public static SnsCredentials get(String name, Output<String> id, SnsCredentialsState state, CustomResourceOptions options)
    resources:  _:    type: scaleway:mnq:SnsCredentials    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.
    The following state arguments are supported:
    AccessKey string
    The ID of the key.
    Name string
    The unique name of the SNS credentials.
    Permissions Pulumiverse.Scaleway.Mnq.Inputs.SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    ProjectId string
    project_id) The ID of the Project in which SNS is enabled.
    Region string
    region). The region in which SNS is enabled.
    SecretKey string
    The secret value of the key.
    AccessKey string
    The ID of the key.
    Name string
    The unique name of the SNS credentials.
    Permissions SnsCredentialsPermissionsArgs
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    ProjectId string
    project_id) The ID of the Project in which SNS is enabled.
    Region string
    region). The region in which SNS is enabled.
    SecretKey string
    The secret value of the key.
    accessKey String
    The ID of the key.
    name String
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId String
    project_id) The ID of the Project in which SNS is enabled.
    region String
    region). The region in which SNS is enabled.
    secretKey String
    The secret value of the key.
    accessKey string
    The ID of the key.
    name string
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissions
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId string
    project_id) The ID of the Project in which SNS is enabled.
    region string
    region). The region in which SNS is enabled.
    secretKey string
    The secret value of the key.
    access_key str
    The ID of the key.
    name str
    The unique name of the SNS credentials.
    permissions SnsCredentialsPermissionsArgs
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    project_id str
    project_id) The ID of the Project in which SNS is enabled.
    region str
    region). The region in which SNS is enabled.
    secret_key str
    The secret value of the key.
    accessKey String
    The ID of the key.
    name String
    The unique name of the SNS credentials.
    permissions Property Map
    . List of permissions associated with these credentials. Only one of the following permissions may be set:
    projectId String
    project_id) The ID of the Project in which SNS is enabled.
    region String
    region). The region in which SNS is enabled.
    secretKey String
    The secret value of the key.

    Supporting Types

    SnsCredentialsPermissions, SnsCredentialsPermissionsArgs

    CanManage bool
    . Defines whether the user can manage the associated resource(s).
    CanPublish bool
    . Defines whether the user can publish messages to the service.
    CanReceive bool
    . Defines whether the user can receive messages from the service.
    CanManage bool
    . Defines whether the user can manage the associated resource(s).
    CanPublish bool
    . Defines whether the user can publish messages to the service.
    CanReceive bool
    . Defines whether the user can receive messages from the service.
    canManage Boolean
    . Defines whether the user can manage the associated resource(s).
    canPublish Boolean
    . Defines whether the user can publish messages to the service.
    canReceive Boolean
    . Defines whether the user can receive messages from the service.
    canManage boolean
    . Defines whether the user can manage the associated resource(s).
    canPublish boolean
    . Defines whether the user can publish messages to the service.
    canReceive boolean
    . Defines whether the user can receive messages from the service.
    can_manage bool
    . Defines whether the user can manage the associated resource(s).
    can_publish bool
    . Defines whether the user can publish messages to the service.
    can_receive bool
    . Defines whether the user can receive messages from the service.
    canManage Boolean
    . Defines whether the user can manage the associated resource(s).
    canPublish Boolean
    . Defines whether the user can publish messages to the service.
    canReceive Boolean
    . Defines whether the user can receive messages from the service.

    Import

    SNS credentials can be imported using {region}/{id}, e.g.

    bash

    $ pulumi import scaleway:mnq/snsCredentials:SnsCredentials main fr-par/11111111111111111111111111111111
    

    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.25.0 published on Saturday, Mar 22, 2025 by pulumiverse