1. Packages
  2. Proxmox Virtual Environment (Proxmox VE)
  3. API Docs
  4. Permission
  5. User
Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski

proxmoxve.Permission.User

Explore with Pulumi AI

proxmoxve logo
Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski

    Manages a user.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as proxmoxve from "@muhlba91/pulumi-proxmoxve";
    
    const operationsMonitoring = new proxmoxve.permission.Role("operationsMonitoring", {
        roleId: "operations-monitoring",
        privileges: ["VM.Monitor"],
    });
    const operationsAutomation = new proxmoxve.permission.User("operationsAutomation", {
        acls: [{
            path: "/vms/1234",
            propagate: true,
            roleId: operationsMonitoring.roleId,
        }],
        comment: "Managed by Terraform",
        password: "a-strong-password",
        userId: "operations-automation@pve",
    });
    
    import pulumi
    import pulumi_proxmoxve as proxmoxve
    
    operations_monitoring = proxmoxve.permission.Role("operationsMonitoring",
        role_id="operations-monitoring",
        privileges=["VM.Monitor"])
    operations_automation = proxmoxve.permission.User("operationsAutomation",
        acls=[proxmoxve.permission.UserAclArgs(
            path="/vms/1234",
            propagate=True,
            role_id=operations_monitoring.role_id,
        )],
        comment="Managed by Terraform",
        password="a-strong-password",
        user_id="operations-automation@pve")
    
    package main
    
    import (
    	"github.com/muhlba91/pulumi-proxmoxve/sdk/v6/go/proxmoxve/Permission"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		operationsMonitoring, err := Permission.NewRole(ctx, "operationsMonitoring", &Permission.RoleArgs{
    			RoleId: pulumi.String("operations-monitoring"),
    			Privileges: pulumi.StringArray{
    				pulumi.String("VM.Monitor"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = Permission.NewUser(ctx, "operationsAutomation", &Permission.UserArgs{
    			Acls: permission.UserAclArray{
    				&permission.UserAclArgs{
    					Path:      pulumi.String("/vms/1234"),
    					Propagate: pulumi.Bool(true),
    					RoleId:    operationsMonitoring.RoleId,
    				},
    			},
    			Comment:  pulumi.String("Managed by Terraform"),
    			Password: pulumi.String("a-strong-password"),
    			UserId:   pulumi.String("operations-automation@pve"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using ProxmoxVE = Pulumi.ProxmoxVE;
    
    return await Deployment.RunAsync(() => 
    {
        var operationsMonitoring = new ProxmoxVE.Permission.Role("operationsMonitoring", new()
        {
            RoleId = "operations-monitoring",
            Privileges = new[]
            {
                "VM.Monitor",
            },
        });
    
        var operationsAutomation = new ProxmoxVE.Permission.User("operationsAutomation", new()
        {
            Acls = new[]
            {
                new ProxmoxVE.Permission.Inputs.UserAclArgs
                {
                    Path = "/vms/1234",
                    Propagate = true,
                    RoleId = operationsMonitoring.RoleId,
                },
            },
            Comment = "Managed by Terraform",
            Password = "a-strong-password",
            UserId = "operations-automation@pve",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.proxmoxve.Permission.Role;
    import com.pulumi.proxmoxve.Permission.RoleArgs;
    import com.pulumi.proxmoxve.Permission.User;
    import com.pulumi.proxmoxve.Permission.UserArgs;
    import com.pulumi.proxmoxve.Permission.inputs.UserAclArgs;
    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 operationsMonitoring = new Role("operationsMonitoring", RoleArgs.builder()        
                .roleId("operations-monitoring")
                .privileges("VM.Monitor")
                .build());
    
            var operationsAutomation = new User("operationsAutomation", UserArgs.builder()        
                .acls(UserAclArgs.builder()
                    .path("/vms/1234")
                    .propagate(true)
                    .roleId(operationsMonitoring.roleId())
                    .build())
                .comment("Managed by Terraform")
                .password("a-strong-password")
                .userId("operations-automation@pve")
                .build());
    
        }
    }
    
    resources:
      operationsAutomation:
        type: proxmoxve:Permission:User
        properties:
          acls:
            - path: /vms/1234
              propagate: true
              roleId: ${operationsMonitoring.roleId}
          comment: Managed by Terraform
          password: a-strong-password
          userId: operations-automation@pve
      operationsMonitoring:
        type: proxmoxve:Permission:Role
        properties:
          roleId: operations-monitoring
          privileges:
            - VM.Monitor
    

    Create User Resource

    new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
    @overload
    def User(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             acls: Optional[Sequence[_permission.UserAclArgs]] = None,
             comment: Optional[str] = None,
             email: Optional[str] = None,
             enabled: Optional[bool] = None,
             expiration_date: Optional[str] = None,
             first_name: Optional[str] = None,
             groups: Optional[Sequence[str]] = None,
             keys: Optional[str] = None,
             last_name: Optional[str] = None,
             password: Optional[str] = None,
             user_id: Optional[str] = None)
    @overload
    def User(resource_name: str,
             args: UserArgs,
             opts: Optional[ResourceOptions] = None)
    func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
    public User(string name, UserArgs args, CustomResourceOptions? opts = null)
    public User(String name, UserArgs args)
    public User(String name, UserArgs args, CustomResourceOptions options)
    
    type: proxmoxve:Permission:User
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args UserArgs
    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 UserArgs
    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 UserArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    UserId string
    The user identifier.
    Acls List<Pulumi.ProxmoxVE.Permission.Inputs.UserAcl>
    The access control list (multiple blocks supported).
    Comment string
    The user comment.
    Email string
    The user's email address.
    Enabled bool
    Whether the user account is enabled.
    ExpirationDate string
    The user account's expiration date (RFC 3339).
    FirstName string
    The user's first name.
    Groups List<string>
    The user's groups.
    Keys string
    The user's keys.
    LastName string
    The user's last name.
    Password string
    The user's password. Required for PVE or PAM realms.
    UserId string
    The user identifier.
    Acls []UserAclArgs
    The access control list (multiple blocks supported).
    Comment string
    The user comment.
    Email string
    The user's email address.
    Enabled bool
    Whether the user account is enabled.
    ExpirationDate string
    The user account's expiration date (RFC 3339).
    FirstName string
    The user's first name.
    Groups []string
    The user's groups.
    Keys string
    The user's keys.
    LastName string
    The user's last name.
    Password string
    The user's password. Required for PVE or PAM realms.
    userId String
    The user identifier.
    acls List<UserAcl>
    The access control list (multiple blocks supported).
    comment String
    The user comment.
    email String
    The user's email address.
    enabled Boolean
    Whether the user account is enabled.
    expirationDate String
    The user account's expiration date (RFC 3339).
    firstName String
    The user's first name.
    groups List<String>
    The user's groups.
    keys String
    The user's keys.
    lastName String
    The user's last name.
    password String
    The user's password. Required for PVE or PAM realms.
    userId string
    The user identifier.
    acls UserAcl[]
    The access control list (multiple blocks supported).
    comment string
    The user comment.
    email string
    The user's email address.
    enabled boolean
    Whether the user account is enabled.
    expirationDate string
    The user account's expiration date (RFC 3339).
    firstName string
    The user's first name.
    groups string[]
    The user's groups.
    keys string
    The user's keys.
    lastName string
    The user's last name.
    password string
    The user's password. Required for PVE or PAM realms.
    user_id str
    The user identifier.
    acls UserAclArgs]
    The access control list (multiple blocks supported).
    comment str
    The user comment.
    email str
    The user's email address.
    enabled bool
    Whether the user account is enabled.
    expiration_date str
    The user account's expiration date (RFC 3339).
    first_name str
    The user's first name.
    groups Sequence[str]
    The user's groups.
    keys str
    The user's keys.
    last_name str
    The user's last name.
    password str
    The user's password. Required for PVE or PAM realms.
    userId String
    The user identifier.
    acls List<Property Map>
    The access control list (multiple blocks supported).
    comment String
    The user comment.
    email String
    The user's email address.
    enabled Boolean
    Whether the user account is enabled.
    expirationDate String
    The user account's expiration date (RFC 3339).
    firstName String
    The user's first name.
    groups List<String>
    The user's groups.
    keys String
    The user's keys.
    lastName String
    The user's last name.
    password String
    The user's password. Required for PVE or PAM realms.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the User 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 User Resource

    Get an existing User 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?: UserState, opts?: CustomResourceOptions): User
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acls: Optional[Sequence[_permission.UserAclArgs]] = None,
            comment: Optional[str] = None,
            email: Optional[str] = None,
            enabled: Optional[bool] = None,
            expiration_date: Optional[str] = None,
            first_name: Optional[str] = None,
            groups: Optional[Sequence[str]] = None,
            keys: Optional[str] = None,
            last_name: Optional[str] = None,
            password: Optional[str] = None,
            user_id: Optional[str] = None) -> User
    func GetUser(ctx *Context, name string, id IDInput, state *UserState, opts ...ResourceOption) (*User, error)
    public static User Get(string name, Input<string> id, UserState? state, CustomResourceOptions? opts = null)
    public static User get(String name, Output<String> id, UserState 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:
    Acls List<Pulumi.ProxmoxVE.Permission.Inputs.UserAcl>
    The access control list (multiple blocks supported).
    Comment string
    The user comment.
    Email string
    The user's email address.
    Enabled bool
    Whether the user account is enabled.
    ExpirationDate string
    The user account's expiration date (RFC 3339).
    FirstName string
    The user's first name.
    Groups List<string>
    The user's groups.
    Keys string
    The user's keys.
    LastName string
    The user's last name.
    Password string
    The user's password. Required for PVE or PAM realms.
    UserId string
    The user identifier.
    Acls []UserAclArgs
    The access control list (multiple blocks supported).
    Comment string
    The user comment.
    Email string
    The user's email address.
    Enabled bool
    Whether the user account is enabled.
    ExpirationDate string
    The user account's expiration date (RFC 3339).
    FirstName string
    The user's first name.
    Groups []string
    The user's groups.
    Keys string
    The user's keys.
    LastName string
    The user's last name.
    Password string
    The user's password. Required for PVE or PAM realms.
    UserId string
    The user identifier.
    acls List<UserAcl>
    The access control list (multiple blocks supported).
    comment String
    The user comment.
    email String
    The user's email address.
    enabled Boolean
    Whether the user account is enabled.
    expirationDate String
    The user account's expiration date (RFC 3339).
    firstName String
    The user's first name.
    groups List<String>
    The user's groups.
    keys String
    The user's keys.
    lastName String
    The user's last name.
    password String
    The user's password. Required for PVE or PAM realms.
    userId String
    The user identifier.
    acls UserAcl[]
    The access control list (multiple blocks supported).
    comment string
    The user comment.
    email string
    The user's email address.
    enabled boolean
    Whether the user account is enabled.
    expirationDate string
    The user account's expiration date (RFC 3339).
    firstName string
    The user's first name.
    groups string[]
    The user's groups.
    keys string
    The user's keys.
    lastName string
    The user's last name.
    password string
    The user's password. Required for PVE or PAM realms.
    userId string
    The user identifier.
    acls UserAclArgs]
    The access control list (multiple blocks supported).
    comment str
    The user comment.
    email str
    The user's email address.
    enabled bool
    Whether the user account is enabled.
    expiration_date str
    The user account's expiration date (RFC 3339).
    first_name str
    The user's first name.
    groups Sequence[str]
    The user's groups.
    keys str
    The user's keys.
    last_name str
    The user's last name.
    password str
    The user's password. Required for PVE or PAM realms.
    user_id str
    The user identifier.
    acls List<Property Map>
    The access control list (multiple blocks supported).
    comment String
    The user comment.
    email String
    The user's email address.
    enabled Boolean
    Whether the user account is enabled.
    expirationDate String
    The user account's expiration date (RFC 3339).
    firstName String
    The user's first name.
    groups List<String>
    The user's groups.
    keys String
    The user's keys.
    lastName String
    The user's last name.
    password String
    The user's password. Required for PVE or PAM realms.
    userId String
    The user identifier.

    Supporting Types

    UserAcl, UserAclArgs

    Path string
    The path.
    RoleId string
    The role identifier.
    Propagate bool
    Whether to propagate to child paths.
    Path string
    The path.
    RoleId string
    The role identifier.
    Propagate bool
    Whether to propagate to child paths.
    path String
    The path.
    roleId String
    The role identifier.
    propagate Boolean
    Whether to propagate to child paths.
    path string
    The path.
    roleId string
    The role identifier.
    propagate boolean
    Whether to propagate to child paths.
    path str
    The path.
    role_id str
    The role identifier.
    propagate bool
    Whether to propagate to child paths.
    path String
    The path.
    roleId String
    The role identifier.
    propagate Boolean
    Whether to propagate to child paths.

    Import

    Instances can be imported using the user_id, e.g.,

    bash

    $ pulumi import proxmoxve:Permission/user:User operations_automation operations-automation@pve
    

    Package Details

    Repository
    proxmoxve muhlba91/pulumi-proxmoxve
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the proxmox Terraform Provider.
    proxmoxve logo
    Proxmox Virtual Environment (Proxmox VE) v6.1.0 published on Sunday, Mar 24, 2024 by Daniel Muehlbachler-Pietrzykowski