ec.Organization
Explore with Pulumi AI
Create Organization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Organization(name: string, args?: OrganizationArgs, opts?: CustomResourceOptions);
@overload
def Organization(resource_name: str,
args: Optional[OrganizationArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Organization(resource_name: str,
opts: Optional[ResourceOptions] = None,
members: Optional[Mapping[str, OrganizationMembersArgs]] = None)
func NewOrganization(ctx *Context, name string, args *OrganizationArgs, opts ...ResourceOption) (*Organization, error)
public Organization(string name, OrganizationArgs? args = null, CustomResourceOptions? opts = null)
public Organization(String name, OrganizationArgs args)
public Organization(String name, OrganizationArgs args, CustomResourceOptions options)
type: ec:Organization
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 OrganizationArgs
- 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 OrganizationArgs
- 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 OrganizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OrganizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OrganizationArgs
- 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 organizationResource = new ElasticCloud.Organization("organizationResource", new()
{
Members =
{
{ "string", new ElasticCloud.Inputs.OrganizationMembersArgs
{
DeploymentRoles = new[]
{
new ElasticCloud.Inputs.OrganizationMembersDeploymentRoleArgs
{
Role = "string",
AllDeployments = false,
ApplicationRoles = new[]
{
"string",
},
DeploymentIds = new[]
{
"string",
},
},
},
Email = "string",
InvitationPending = false,
OrganizationRole = "string",
ProjectElasticsearchRoles = new[]
{
new ElasticCloud.Inputs.OrganizationMembersProjectElasticsearchRoleArgs
{
Role = "string",
AllProjects = false,
ApplicationRoles = new[]
{
"string",
},
ProjectIds = new[]
{
"string",
},
},
},
ProjectObservabilityRoles = new[]
{
new ElasticCloud.Inputs.OrganizationMembersProjectObservabilityRoleArgs
{
Role = "string",
AllProjects = false,
ApplicationRoles = new[]
{
"string",
},
ProjectIds = new[]
{
"string",
},
},
},
ProjectSecurityRoles = new[]
{
new ElasticCloud.Inputs.OrganizationMembersProjectSecurityRoleArgs
{
Role = "string",
AllProjects = false,
ApplicationRoles = new[]
{
"string",
},
ProjectIds = new[]
{
"string",
},
},
},
UserId = "string",
} },
},
});
example, err := ec.NewOrganization(ctx, "organizationResource", &ec.OrganizationArgs{
Members: ec.OrganizationMembersMap{
"string": &ec.OrganizationMembersArgs{
DeploymentRoles: ec.OrganizationMembersDeploymentRoleArray{
&ec.OrganizationMembersDeploymentRoleArgs{
Role: pulumi.String("string"),
AllDeployments: pulumi.Bool(false),
ApplicationRoles: pulumi.StringArray{
pulumi.String("string"),
},
DeploymentIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Email: pulumi.String("string"),
InvitationPending: pulumi.Bool(false),
OrganizationRole: pulumi.String("string"),
ProjectElasticsearchRoles: ec.OrganizationMembersProjectElasticsearchRoleArray{
&ec.OrganizationMembersProjectElasticsearchRoleArgs{
Role: pulumi.String("string"),
AllProjects: pulumi.Bool(false),
ApplicationRoles: pulumi.StringArray{
pulumi.String("string"),
},
ProjectIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
ProjectObservabilityRoles: ec.OrganizationMembersProjectObservabilityRoleArray{
&ec.OrganizationMembersProjectObservabilityRoleArgs{
Role: pulumi.String("string"),
AllProjects: pulumi.Bool(false),
ApplicationRoles: pulumi.StringArray{
pulumi.String("string"),
},
ProjectIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
ProjectSecurityRoles: ec.OrganizationMembersProjectSecurityRoleArray{
&ec.OrganizationMembersProjectSecurityRoleArgs{
Role: pulumi.String("string"),
AllProjects: pulumi.Bool(false),
ApplicationRoles: pulumi.StringArray{
pulumi.String("string"),
},
ProjectIds: pulumi.StringArray{
pulumi.String("string"),
},
},
},
UserId: pulumi.String("string"),
},
},
})
var organizationResource = new Organization("organizationResource", OrganizationArgs.builder()
.members(Map.of("string", Map.ofEntries(
Map.entry("deploymentRoles", Map.ofEntries(
Map.entry("role", "string"),
Map.entry("allDeployments", false),
Map.entry("applicationRoles", "string"),
Map.entry("deploymentIds", "string")
)),
Map.entry("email", "string"),
Map.entry("invitationPending", false),
Map.entry("organizationRole", "string"),
Map.entry("projectElasticsearchRoles", Map.ofEntries(
Map.entry("role", "string"),
Map.entry("allProjects", false),
Map.entry("applicationRoles", "string"),
Map.entry("projectIds", "string")
)),
Map.entry("projectObservabilityRoles", Map.ofEntries(
Map.entry("role", "string"),
Map.entry("allProjects", false),
Map.entry("applicationRoles", "string"),
Map.entry("projectIds", "string")
)),
Map.entry("projectSecurityRoles", Map.ofEntries(
Map.entry("role", "string"),
Map.entry("allProjects", false),
Map.entry("applicationRoles", "string"),
Map.entry("projectIds", "string")
)),
Map.entry("userId", "string")
)))
.build());
organization_resource = ec.Organization("organizationResource", members={
"string": {
"deployment_roles": [{
"role": "string",
"all_deployments": False,
"application_roles": ["string"],
"deployment_ids": ["string"],
}],
"email": "string",
"invitation_pending": False,
"organization_role": "string",
"project_elasticsearch_roles": [{
"role": "string",
"all_projects": False,
"application_roles": ["string"],
"project_ids": ["string"],
}],
"project_observability_roles": [{
"role": "string",
"all_projects": False,
"application_roles": ["string"],
"project_ids": ["string"],
}],
"project_security_roles": [{
"role": "string",
"all_projects": False,
"application_roles": ["string"],
"project_ids": ["string"],
}],
"user_id": "string",
},
})
const organizationResource = new ec.Organization("organizationResource", {members: {
string: {
deploymentRoles: [{
role: "string",
allDeployments: false,
applicationRoles: ["string"],
deploymentIds: ["string"],
}],
email: "string",
invitationPending: false,
organizationRole: "string",
projectElasticsearchRoles: [{
role: "string",
allProjects: false,
applicationRoles: ["string"],
projectIds: ["string"],
}],
projectObservabilityRoles: [{
role: "string",
allProjects: false,
applicationRoles: ["string"],
projectIds: ["string"],
}],
projectSecurityRoles: [{
role: "string",
allProjects: false,
applicationRoles: ["string"],
projectIds: ["string"],
}],
userId: "string",
},
}});
type: ec:Organization
properties:
members:
string:
deploymentRoles:
- allDeployments: false
applicationRoles:
- string
deploymentIds:
- string
role: string
email: string
invitationPending: false
organizationRole: string
projectElasticsearchRoles:
- allProjects: false
applicationRoles:
- string
projectIds:
- string
role: string
projectObservabilityRoles:
- allProjects: false
applicationRoles:
- string
projectIds:
- string
role: string
projectSecurityRoles:
- allProjects: false
applicationRoles:
- string
projectIds:
- string
role: string
userId: string
Organization 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 Organization resource accepts the following input properties:
- Members
Dictionary<string, Pulumi.
Elastic Cloud. Inputs. Organization Members Args> - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- Members
map[string]Organization
Members Args - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Map<String,Organization
Members Args> - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
{[key: string]: Organization
Members Args} - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Mapping[str, Organization
Members Args] - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members Map<Property Map>
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
Outputs
All input properties are implicitly available as output properties. Additionally, the Organization 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 Organization Resource
Get an existing Organization 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?: OrganizationState, opts?: CustomResourceOptions): Organization
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
members: Optional[Mapping[str, OrganizationMembersArgs]] = None) -> Organization
func GetOrganization(ctx *Context, name string, id IDInput, state *OrganizationState, opts ...ResourceOption) (*Organization, error)
public static Organization Get(string name, Input<string> id, OrganizationState? state, CustomResourceOptions? opts = null)
public static Organization get(String name, Output<String> id, OrganizationState 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.
- Members
Dictionary<string, Pulumi.
Elastic Cloud. Inputs. Organization Members Args> - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- Members
map[string]Organization
Members Args - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Map<String,Organization
Members Args> - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
{[key: string]: Organization
Members Args} - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members
Mapping[str, Organization
Members Args] - Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
- members Map<Property Map>
- Manages the members of an Elastic Cloud organization. The key of each entry should be the email of the member.
Supporting Types
OrganizationMembers, OrganizationMembersArgs
- Deployment
Roles List<Pulumi.Elastic Cloud. Inputs. Organization Members Deployment Role> - Grant access to one or more deployments. For more info see: Deployment instance roles.
- Email string
- Email address of the user.
- Invitation
Pending bool - Set to true while the user has not yet accepted their invitation to the organization.
- Organization
Role string - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - Project
Elasticsearch List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Elasticsearch Role> - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- Project
Observability List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Observability Role> - Roles assigned for observability projects. For more info see: Serverless observability roles
- Project
Security List<Pulumi.Roles Elastic Cloud. Inputs. Organization Members Project Security Role> - Roles assigned for security projects. For more info see: Serverless security roles
- User
Id string - User ID.
- Deployment
Roles []OrganizationMembers Deployment Role - Grant access to one or more deployments. For more info see: Deployment instance roles.
- Email string
- Email address of the user.
- Invitation
Pending bool - Set to true while the user has not yet accepted their invitation to the organization.
- Organization
Role string - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - Project
Elasticsearch []OrganizationRoles Members Project Elasticsearch Role - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- Project
Observability []OrganizationRoles Members Project Observability Role - Roles assigned for observability projects. For more info see: Serverless observability roles
- Project
Security []OrganizationRoles Members Project Security Role - Roles assigned for security projects. For more info see: Serverless security roles
- User
Id string - User ID.
- deployment
Roles List<OrganizationMembers Deployment Role> - Grant access to one or more deployments. For more info see: Deployment instance roles.
- email String
- Email address of the user.
- invitation
Pending Boolean - Set to true while the user has not yet accepted their invitation to the organization.
- organization
Role String - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - project
Elasticsearch List<OrganizationRoles Members Project Elasticsearch Role> - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- project
Observability List<OrganizationRoles Members Project Observability Role> - Roles assigned for observability projects. For more info see: Serverless observability roles
- project
Security List<OrganizationRoles Members Project Security Role> - Roles assigned for security projects. For more info see: Serverless security roles
- user
Id String - User ID.
- deployment
Roles OrganizationMembers Deployment Role[] - Grant access to one or more deployments. For more info see: Deployment instance roles.
- email string
- Email address of the user.
- invitation
Pending boolean - Set to true while the user has not yet accepted their invitation to the organization.
- organization
Role string - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - project
Elasticsearch OrganizationRoles Members Project Elasticsearch Role[] - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- project
Observability OrganizationRoles Members Project Observability Role[] - Roles assigned for observability projects. For more info see: Serverless observability roles
- project
Security OrganizationRoles Members Project Security Role[] - Roles assigned for security projects. For more info see: Serverless security roles
- user
Id string - User ID.
- deployment_
roles Sequence[OrganizationMembers Deployment Role] - Grant access to one or more deployments. For more info see: Deployment instance roles.
- email str
- Email address of the user.
- invitation_
pending bool - Set to true while the user has not yet accepted their invitation to the organization.
- organization_
role str - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - project_
elasticsearch_ Sequence[Organizationroles Members Project Elasticsearch Role] - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- project_
observability_ Sequence[Organizationroles Members Project Observability Role] - Roles assigned for observability projects. For more info see: Serverless observability roles
- project_
security_ Sequence[Organizationroles Members Project Security Role] - Roles assigned for security projects. For more info see: Serverless security roles
- user_
id str - User ID.
- deployment
Roles List<Property Map> - Grant access to one or more deployments. For more info see: Deployment instance roles.
- email String
- Email address of the user.
- invitation
Pending Boolean - Set to true while the user has not yet accepted their invitation to the organization.
- organization
Role String - The optional organization role for the member. Can be one of
organization-admin
,billing-admin
. For more info see: Organization roles - project
Elasticsearch List<Property Map>Roles - Roles assigned for elasticsearch projects. For more info see: Serverless elasticsearch roles
- project
Observability List<Property Map>Roles - Roles assigned for observability projects. For more info see: Serverless observability roles
- project
Security List<Property Map>Roles - Roles assigned for security projects. For more info see: Serverless security roles
- user
Id String - User ID.
OrganizationMembersDeploymentRole, OrganizationMembersDeploymentRoleArgs
- Role string
- Assigned role. Must be on of
viewer
,editor
oradmin
. - All
Deployments bool - Role applies to all deployments in the organization.
- Application
Roles List<string> - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- Deployment
Ids List<string> - Role applies to deployments listed here.
- Role string
- Assigned role. Must be on of
viewer
,editor
oradmin
. - All
Deployments bool - Role applies to all deployments in the organization.
- Application
Roles []string - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- Deployment
Ids []string - Role applies to deployments listed here.
- role String
- Assigned role. Must be on of
viewer
,editor
oradmin
. - all
Deployments Boolean - Role applies to all deployments in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deployment
Ids List<String> - Role applies to deployments listed here.
- role string
- Assigned role. Must be on of
viewer
,editor
oradmin
. - all
Deployments boolean - Role applies to all deployments in the organization.
- application
Roles string[] - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deployment
Ids string[] - Role applies to deployments listed here.
- role str
- Assigned role. Must be on of
viewer
,editor
oradmin
. - all_
deployments bool - Role applies to all deployments in the organization.
- application_
roles Sequence[str] - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deployment_
ids Sequence[str] - Role applies to deployments listed here.
- role String
- Assigned role. Must be on of
viewer
,editor
oradmin
. - all
Deployments Boolean - Role applies to all deployments in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the deployment(s) specified in the role assignment.
- deployment
Ids List<String> - Role applies to deployments listed here.
OrganizationMembersProjectElasticsearchRole, OrganizationMembersProjectElasticsearchRoleArgs
- Role string
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles List<string> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids List<string> - Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles []string - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids []string - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
- role string
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - all
Projects boolean - Role applies to all projects in the organization.
- application
Roles string[] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids string[] - Role applies to projects listed here.
- role str
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - all_
projects bool - Role applies to all projects in the organization.
- application_
roles Sequence[str] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_
ids Sequence[str] - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,developer
,viewer
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
OrganizationMembersProjectObservabilityRole, OrganizationMembersProjectObservabilityRoleArgs
- Role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles List<string> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids List<string> - Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles []string - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids []string - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
- role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - all
Projects boolean - Role applies to all projects in the organization.
- application
Roles string[] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids string[] - Role applies to projects listed here.
- role str
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - all_
projects bool - Role applies to all projects in the organization.
- application_
roles Sequence[str] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_
ids Sequence[str] - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,editor
,viewer
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
OrganizationMembersProjectSecurityRole, OrganizationMembersProjectSecurityRoleArgs
- Role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles List<string> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids List<string> - Role applies to projects listed here.
- Role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - All
Projects bool - Role applies to all projects in the organization.
- Application
Roles []string - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- Project
Ids []string - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
- role string
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - all
Projects boolean - Role applies to all projects in the organization.
- application
Roles string[] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids string[] - Role applies to projects listed here.
- role str
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - all_
projects bool - Role applies to all projects in the organization.
- application_
roles Sequence[str] - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project_
ids Sequence[str] - Role applies to projects listed here.
- role String
- Assigned role. (Allowed values:
admin
,editor
,viewer
,t1-analyst
,t2-analyst
,t3-analyst
,threat-intel-analyst
,rule-author
,soc-manager
,endpoint-operations-analyst
,platform-engineer
,detections-admin
,endpoint-policy-manager
) - all
Projects Boolean - Role applies to all projects in the organization.
- application
Roles List<String> - If provided, the user assigned this role assignment will be granted this application role when signing in to the project(s) specified in the role assignment.
- project
Ids List<String> - Role applies to projects listed here.
Package Details
- Repository
- ec pulumi/pulumi-ec
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ec
Terraform Provider.