redpanda.User
Explore with Pulumi AI
Import
$ pulumi import redpanda:index/user:User example userName,clusterId
Where clusterId is the ID of the cluster in Redpanda Cloud
Create User Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new User(name: string, args: UserArgs, opts?: CustomResourceOptions);
@overload
def User(resource_name: str,
args: UserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def User(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_api_url: Optional[str] = None,
password: Optional[str] = None,
mechanism: Optional[str] = None,
name: Optional[str] = None)
func NewUser(ctx *Context, name string, args UserArgs, opts ...ResourceOption) (*User, error)
public User(string name, UserArgs args, CustomResourceOptions? opts = null)
type: redpanda:User
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 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var userResource = new Redpanda.User("userResource", new()
{
ClusterApiUrl = "string",
Password = "string",
Mechanism = "string",
Name = "string",
});
example, err := redpanda.NewUser(ctx, "userResource", &redpanda.UserArgs{
ClusterApiUrl: pulumi.String("string"),
Password: pulumi.String("string"),
Mechanism: pulumi.String("string"),
Name: pulumi.String("string"),
})
var userResource = new User("userResource", UserArgs.builder()
.clusterApiUrl("string")
.password("string")
.mechanism("string")
.name("string")
.build());
user_resource = redpanda.User("userResource",
cluster_api_url="string",
password="string",
mechanism="string",
name="string")
const userResource = new redpanda.User("userResource", {
clusterApiUrl: "string",
password: "string",
mechanism: "string",
name: "string",
});
type: redpanda:User
properties:
clusterApiUrl: string
mechanism: string
name: string
password: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The User resource accepts the following input properties:
- Cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- Password string
- Password of the user
- Mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- Name string
- Name of the user, must be unique
- Cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- Password string
- Password of the user
- Mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- Name string
- Name of the user, must be unique
- cluster
Api StringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- password String
- Password of the user
- mechanism String
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name String
- Name of the user, must be unique
- cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- password string
- Password of the user
- mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name string
- Name of the user, must be unique
- cluster_
api_ strurl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- password str
- Password of the user
- mechanism str
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name str
- Name of the user, must be unique
- cluster
Api StringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- password String
- Password of the user
- mechanism String
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name String
- Name of the user, must be unique
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,
cluster_api_url: Optional[str] = None,
mechanism: Optional[str] = None,
name: Optional[str] = None,
password: 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)
resources: _: type: redpanda:User 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.
- Cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- Mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- Name string
- Name of the user, must be unique
- Password string
- Password of the user
- Cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- Mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- Name string
- Name of the user, must be unique
- Password string
- Password of the user
- cluster
Api StringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- mechanism String
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name String
- Name of the user, must be unique
- password String
- Password of the user
- cluster
Api stringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- mechanism string
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name string
- Name of the user, must be unique
- password string
- Password of the user
- cluster_
api_ strurl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- mechanism str
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name str
- Name of the user, must be unique
- password str
- Password of the user
- cluster
Api StringUrl - The cluster API URL. Changing this will prevent deletion of the resource on the existing cluster. It is generally a better idea to delete an existing resource and create a new one than to change this value unless you are planning to do state imports
- mechanism String
- Which authentication method to use, see https://docs.redpanda.com/current/manage/security/authentication/ for more information
- name String
- Name of the user, must be unique
- password String
- Password of the user
Package Details
- Repository
- redpanda redpanda-data/terraform-provider-redpanda
- License
- Notes
- This Pulumi package is based on the
redpanda
Terraform Provider.