prismacloud.UserRole
Explore with Pulumi AI
Manage an user role.
Create UserRole Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UserRole(name: string, args: UserRoleArgs, opts?: CustomResourceOptions);
@overload
def UserRole(resource_name: str,
args: UserRoleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UserRole(resource_name: str,
opts: Optional[ResourceOptions] = None,
role_type: Optional[str] = None,
account_group_ids: Optional[Sequence[str]] = None,
additional_attributes: Optional[UserRoleAdditionalAttributesArgs] = None,
code_repository_ids: Optional[Sequence[str]] = None,
delete_associated_users: Optional[bool] = None,
description: Optional[str] = None,
name: Optional[str] = None,
resource_list_ids: Optional[Sequence[str]] = None,
restrict_dismissal_access: Optional[bool] = None,
user_role_id: Optional[str] = None)
func NewUserRole(ctx *Context, name string, args UserRoleArgs, opts ...ResourceOption) (*UserRole, error)
public UserRole(string name, UserRoleArgs args, CustomResourceOptions? opts = null)
public UserRole(String name, UserRoleArgs args)
public UserRole(String name, UserRoleArgs args, CustomResourceOptions options)
type: prismacloud:UserRole
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 UserRoleArgs
- 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 UserRoleArgs
- 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 UserRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserRoleArgs
- 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 userRoleResource = new Prismacloud.UserRole("userRoleResource", new()
{
RoleType = "string",
AccountGroupIds = new[]
{
"string",
},
AdditionalAttributes = new Prismacloud.Inputs.UserRoleAdditionalAttributesArgs
{
HasDefenderPermissions = false,
OnlyAllowCiAccess = false,
OnlyAllowComputeAccess = false,
OnlyAllowReadAccess = false,
},
CodeRepositoryIds = new[]
{
"string",
},
DeleteAssociatedUsers = false,
Description = "string",
Name = "string",
ResourceListIds = new[]
{
"string",
},
RestrictDismissalAccess = false,
UserRoleId = "string",
});
example, err := prismacloud.NewUserRole(ctx, "userRoleResource", &prismacloud.UserRoleArgs{
RoleType: pulumi.String("string"),
AccountGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
AdditionalAttributes: &prismacloud.UserRoleAdditionalAttributesArgs{
HasDefenderPermissions: pulumi.Bool(false),
OnlyAllowCiAccess: pulumi.Bool(false),
OnlyAllowComputeAccess: pulumi.Bool(false),
OnlyAllowReadAccess: pulumi.Bool(false),
},
CodeRepositoryIds: pulumi.StringArray{
pulumi.String("string"),
},
DeleteAssociatedUsers: pulumi.Bool(false),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ResourceListIds: pulumi.StringArray{
pulumi.String("string"),
},
RestrictDismissalAccess: pulumi.Bool(false),
UserRoleId: pulumi.String("string"),
})
var userRoleResource = new UserRole("userRoleResource", UserRoleArgs.builder()
.roleType("string")
.accountGroupIds("string")
.additionalAttributes(UserRoleAdditionalAttributesArgs.builder()
.hasDefenderPermissions(false)
.onlyAllowCiAccess(false)
.onlyAllowComputeAccess(false)
.onlyAllowReadAccess(false)
.build())
.codeRepositoryIds("string")
.deleteAssociatedUsers(false)
.description("string")
.name("string")
.resourceListIds("string")
.restrictDismissalAccess(false)
.userRoleId("string")
.build());
user_role_resource = prismacloud.UserRole("userRoleResource",
role_type="string",
account_group_ids=["string"],
additional_attributes={
"has_defender_permissions": False,
"only_allow_ci_access": False,
"only_allow_compute_access": False,
"only_allow_read_access": False,
},
code_repository_ids=["string"],
delete_associated_users=False,
description="string",
name="string",
resource_list_ids=["string"],
restrict_dismissal_access=False,
user_role_id="string")
const userRoleResource = new prismacloud.UserRole("userRoleResource", {
roleType: "string",
accountGroupIds: ["string"],
additionalAttributes: {
hasDefenderPermissions: false,
onlyAllowCiAccess: false,
onlyAllowComputeAccess: false,
onlyAllowReadAccess: false,
},
codeRepositoryIds: ["string"],
deleteAssociatedUsers: false,
description: "string",
name: "string",
resourceListIds: ["string"],
restrictDismissalAccess: false,
userRoleId: "string",
});
type: prismacloud:UserRole
properties:
accountGroupIds:
- string
additionalAttributes:
hasDefenderPermissions: false
onlyAllowCiAccess: false
onlyAllowComputeAccess: false
onlyAllowReadAccess: false
codeRepositoryIds:
- string
deleteAssociatedUsers: false
description: string
name: string
resourceListIds:
- string
restrictDismissalAccess: false
roleType: string
userRoleId: string
UserRole 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 UserRole resource accepts the following input properties:
- Role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - Account
Group List<string>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - Additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- Code
Repository List<string>Ids - List of code repository IDs.
- Delete
Associated boolUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - Description string
- Description.
- Name string
- Name of the role.
- Resource
List List<string>Ids - List of resource list IDs.
- Restrict
Dismissal boolAccess - Restrict dismissal access.
- User
Role stringId
- Role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - Account
Group []stringIds - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - Additional
Attributes UserRole Additional Attributes Args - An Additional attributes spec, as defined below.
- Code
Repository []stringIds - List of code repository IDs.
- Delete
Associated boolUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - Description string
- Description.
- Name string
- Name of the role.
- Resource
List []stringIds - List of resource list IDs.
- Restrict
Dismissal boolAccess - Restrict dismissal access.
- User
Role stringId
- role
Type String - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - account
Group List<String>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- code
Repository List<String>Ids - List of code repository IDs.
- delete
Associated BooleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description String
- Description.
- name String
- Name of the role.
- resource
List List<String>Ids - List of resource list IDs.
- restrict
Dismissal BooleanAccess - Restrict dismissal access.
- user
Role StringId
- role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - account
Group string[]Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- code
Repository string[]Ids - List of code repository IDs.
- delete
Associated booleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description string
- Description.
- name string
- Name of the role.
- resource
List string[]Ids - List of resource list IDs.
- restrict
Dismissal booleanAccess - Restrict dismissal access.
- user
Role stringId
- role_
type str - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - account_
group_ Sequence[str]ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - additional_
attributes UserRole Additional Attributes Args - An Additional attributes spec, as defined below.
- code_
repository_ Sequence[str]ids - List of code repository IDs.
- delete_
associated_ boolusers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description str
- Description.
- name str
- Name of the role.
- resource_
list_ Sequence[str]ids - List of resource list IDs.
- restrict_
dismissal_ boolaccess - Restrict dismissal access.
- user_
role_ strid
- role
Type String - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - account
Group List<String>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - additional
Attributes Property Map - An Additional attributes spec, as defined below.
- code
Repository List<String>Ids - List of code repository IDs.
- delete
Associated BooleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description String
- Description.
- name String
- Name of the role.
- resource
List List<String>Ids - List of resource list IDs.
- restrict
Dismissal BooleanAccess - Restrict dismissal access.
- user
Role StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the UserRole resource produces the following output properties:
- Account
Groups List<UserRole Account Group> - List of account groups, as defined below.
- Associated
Users List<string> - List of associated application users which cannot exist in the system without the user role.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringBy - Last modified by
- Last
Modified doubleTs - (int) Last modified timestamp.
- Role
Id string - Role UUID.
- Account
Groups []UserRole Account Group - List of account groups, as defined below.
- Associated
Users []string - List of associated application users which cannot exist in the system without the user role.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modified stringBy - Last modified by
- Last
Modified float64Ts - (int) Last modified timestamp.
- Role
Id string - Role UUID.
- account
Groups List<UserRole Account Group> - List of account groups, as defined below.
- associated
Users List<String> - List of associated application users which cannot exist in the system without the user role.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringBy - Last modified by
- last
Modified DoubleTs - (int) Last modified timestamp.
- role
Id String - Role UUID.
- account
Groups UserRole Account Group[] - List of account groups, as defined below.
- associated
Users string[] - List of associated application users which cannot exist in the system without the user role.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Modified stringBy - Last modified by
- last
Modified numberTs - (int) Last modified timestamp.
- role
Id string - Role UUID.
- account_
groups Sequence[UserRole Account Group] - List of account groups, as defined below.
- associated_
users Sequence[str] - List of associated application users which cannot exist in the system without the user role.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modified_ strby - Last modified by
- last_
modified_ floatts - (int) Last modified timestamp.
- role_
id str - Role UUID.
- account
Groups List<Property Map> - List of account groups, as defined below.
- associated
Users List<String> - List of associated application users which cannot exist in the system without the user role.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modified StringBy - Last modified by
- last
Modified NumberTs - (int) Last modified timestamp.
- role
Id String - Role UUID.
Look up Existing UserRole Resource
Get an existing UserRole 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?: UserRoleState, opts?: CustomResourceOptions): UserRole
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_group_ids: Optional[Sequence[str]] = None,
account_groups: Optional[Sequence[UserRoleAccountGroupArgs]] = None,
additional_attributes: Optional[UserRoleAdditionalAttributesArgs] = None,
associated_users: Optional[Sequence[str]] = None,
code_repository_ids: Optional[Sequence[str]] = None,
delete_associated_users: Optional[bool] = None,
description: Optional[str] = None,
last_modified_by: Optional[str] = None,
last_modified_ts: Optional[float] = None,
name: Optional[str] = None,
resource_list_ids: Optional[Sequence[str]] = None,
restrict_dismissal_access: Optional[bool] = None,
role_id: Optional[str] = None,
role_type: Optional[str] = None,
user_role_id: Optional[str] = None) -> UserRole
func GetUserRole(ctx *Context, name string, id IDInput, state *UserRoleState, opts ...ResourceOption) (*UserRole, error)
public static UserRole Get(string name, Input<string> id, UserRoleState? state, CustomResourceOptions? opts = null)
public static UserRole get(String name, Output<String> id, UserRoleState state, CustomResourceOptions options)
resources: _: type: prismacloud:UserRole 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.
- Account
Group List<string>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - Account
Groups List<UserRole Account Group> - List of account groups, as defined below.
- Additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- Associated
Users List<string> - List of associated application users which cannot exist in the system without the user role.
- Code
Repository List<string>Ids - List of code repository IDs.
- Delete
Associated boolUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - Description string
- Description.
- Last
Modified stringBy - Last modified by
- Last
Modified doubleTs - (int) Last modified timestamp.
- Name string
- Name of the role.
- Resource
List List<string>Ids - List of resource list IDs.
- Restrict
Dismissal boolAccess - Restrict dismissal access.
- Role
Id string - Role UUID.
- Role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - User
Role stringId
- Account
Group []stringIds - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - Account
Groups []UserRole Account Group Args - List of account groups, as defined below.
- Additional
Attributes UserRole Additional Attributes Args - An Additional attributes spec, as defined below.
- Associated
Users []string - List of associated application users which cannot exist in the system without the user role.
- Code
Repository []stringIds - List of code repository IDs.
- Delete
Associated boolUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - Description string
- Description.
- Last
Modified stringBy - Last modified by
- Last
Modified float64Ts - (int) Last modified timestamp.
- Name string
- Name of the role.
- Resource
List []stringIds - List of resource list IDs.
- Restrict
Dismissal boolAccess - Restrict dismissal access.
- Role
Id string - Role UUID.
- Role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - User
Role stringId
- account
Group List<String>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - account
Groups List<UserRole Account Group> - List of account groups, as defined below.
- additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- associated
Users List<String> - List of associated application users which cannot exist in the system without the user role.
- code
Repository List<String>Ids - List of code repository IDs.
- delete
Associated BooleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description String
- Description.
- last
Modified StringBy - Last modified by
- last
Modified DoubleTs - (int) Last modified timestamp.
- name String
- Name of the role.
- resource
List List<String>Ids - List of resource list IDs.
- restrict
Dismissal BooleanAccess - Restrict dismissal access.
- role
Id String - Role UUID.
- role
Type String - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - user
Role StringId
- account
Group string[]Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - account
Groups UserRole Account Group[] - List of account groups, as defined below.
- additional
Attributes UserRole Additional Attributes - An Additional attributes spec, as defined below.
- associated
Users string[] - List of associated application users which cannot exist in the system without the user role.
- code
Repository string[]Ids - List of code repository IDs.
- delete
Associated booleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description string
- Description.
- last
Modified stringBy - Last modified by
- last
Modified numberTs - (int) Last modified timestamp.
- name string
- Name of the role.
- resource
List string[]Ids - List of resource list IDs.
- restrict
Dismissal booleanAccess - Restrict dismissal access.
- role
Id string - Role UUID.
- role
Type string - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - user
Role stringId
- account_
group_ Sequence[str]ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - account_
groups Sequence[UserRole Account Group Args] - List of account groups, as defined below.
- additional_
attributes UserRole Additional Attributes Args - An Additional attributes spec, as defined below.
- associated_
users Sequence[str] - List of associated application users which cannot exist in the system without the user role.
- code_
repository_ Sequence[str]ids - List of code repository IDs.
- delete_
associated_ boolusers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description str
- Description.
- last_
modified_ strby - Last modified by
- last_
modified_ floatts - (int) Last modified timestamp.
- name str
- Name of the role.
- resource_
list_ Sequence[str]ids - List of resource list IDs.
- restrict_
dismissal_ boolaccess - Restrict dismissal access.
- role_
id str - Role UUID.
- role_
type str - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - user_
role_ strid
- account
Group List<String>Ids - List of accessible account group IDs. (Can't be set if
role_type
isSystem Admin
orBuild and Deploy Security
) - account
Groups List<Property Map> - List of account groups, as defined below.
- additional
Attributes Property Map - An Additional attributes spec, as defined below.
- associated
Users List<String> - List of associated application users which cannot exist in the system without the user role.
- code
Repository List<String>Ids - List of code repository IDs.
- delete
Associated BooleanUsers - Delete associated users (
Note
: When thedelete_associated_users
flag is set to true, all associated users are deleted before the user role is deleted when the resource is destroyed). - description String
- Description.
- last
Modified StringBy - Last modified by
- last
Modified NumberTs - (int) Last modified timestamp.
- name String
- Name of the role.
- resource
List List<String>Ids - List of resource list IDs.
- restrict
Dismissal BooleanAccess - Restrict dismissal access.
- role
Id String - Role UUID.
- role
Type String - User Role Type. Default ( Valid values are
System Admin
,Account Group Admin
,Account Group Read Only
,Cloud Provisioning Admin
,Account and Cloud Provisioning Admin
,Build and Deploy Security
) or Custom Permission Group Name. - user
Role StringId
Supporting Types
UserRoleAccountGroup, UserRoleAccountGroupArgs
UserRoleAdditionalAttributes, UserRoleAdditionalAttributesArgs
- Has
Defender boolPermissions - Has defender Permissions
- Only
Allow boolCi Access - Allows only CI Access
- Only
Allow boolCompute Access - Give access to only compute tab and access key tab
- Only
Allow boolRead Access - Allow only read access
- Has
Defender boolPermissions - Has defender Permissions
- Only
Allow boolCi Access - Allows only CI Access
- Only
Allow boolCompute Access - Give access to only compute tab and access key tab
- Only
Allow boolRead Access - Allow only read access
- has
Defender BooleanPermissions - Has defender Permissions
- only
Allow BooleanCi Access - Allows only CI Access
- only
Allow BooleanCompute Access - Give access to only compute tab and access key tab
- only
Allow BooleanRead Access - Allow only read access
- has
Defender booleanPermissions - Has defender Permissions
- only
Allow booleanCi Access - Allows only CI Access
- only
Allow booleanCompute Access - Give access to only compute tab and access key tab
- only
Allow booleanRead Access - Allow only read access
- has_
defender_ boolpermissions - Has defender Permissions
- only_
allow_ boolci_ access - Allows only CI Access
- only_
allow_ boolcompute_ access - Give access to only compute tab and access key tab
- only_
allow_ boolread_ access - Allow only read access
- has
Defender BooleanPermissions - Has defender Permissions
- only
Allow BooleanCi Access - Allows only CI Access
- only
Allow BooleanCompute Access - Give access to only compute tab and access key tab
- only
Allow BooleanRead Access - Allow only read access
Import
Resources can be imported using the role ID:
$ pulumi import prismacloud:index/userRole:UserRole example 11111-22-33
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- prismacloud paloaltonetworks/terraform-provider-prismacloud
- License
- Notes
- This Pulumi package is based on the
prismacloud
Terraform Provider.