lacework.AlertChannelJiraCloud
Explore with Pulumi AI
Configure Lacework to forward events to Jira. Lacework calls the Jira integration REST API and creates a new Jira open issue for each Lacework event that meets or exceeds the specified alert severity level. If there is a large volume of events that exceed the ability of Jira REST API to create new Jira issues, priority is given to those events with the highest severity.
Jira + Lacework Integration Prerequisites
Before creating the Jira alert channel, verify the following prerequisites:
- Provide a Jira user name and an API access token that is used to create new Jira issues. For management and security purposes, Lacework recommends creating a dedicated Lacework Jira user with appropriate permissions. For more information, refer to the Jira REST API Reference
- The Jira user must have sufficient privileges to create new Jira issues in the specified Jira project
- The Jira issue type must exist in the specified Jira project prior to creating the Lacework Jira alert channel. When Lacework creates new Jira issues, it creates new issues based on the specified Jira issue type
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as lacework from "@pulumi/lacework";
const example = new lacework.AlertChannelJiraCloud("example", {
apiToken: "abcd1234",
configuration: "Bidirectional",
issueType: "Bug",
jiraUrl: "mycompany.atlassian.net",
projectKey: "EXAMPLE",
username: "my@username.com",
});
import pulumi
import pulumi_lacework as lacework
example = lacework.AlertChannelJiraCloud("example",
api_token="abcd1234",
configuration="Bidirectional",
issue_type="Bug",
jira_url="mycompany.atlassian.net",
project_key="EXAMPLE",
username="my@username.com")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/lacework/v2/lacework"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := lacework.NewAlertChannelJiraCloud(ctx, "example", &lacework.AlertChannelJiraCloudArgs{
ApiToken: pulumi.String("abcd1234"),
Configuration: pulumi.String("Bidirectional"),
IssueType: pulumi.String("Bug"),
JiraUrl: pulumi.String("mycompany.atlassian.net"),
ProjectKey: pulumi.String("EXAMPLE"),
Username: pulumi.String("my@username.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Lacework = Pulumi.Lacework;
return await Deployment.RunAsync(() =>
{
var example = new Lacework.AlertChannelJiraCloud("example", new()
{
ApiToken = "abcd1234",
Configuration = "Bidirectional",
IssueType = "Bug",
JiraUrl = "mycompany.atlassian.net",
ProjectKey = "EXAMPLE",
Username = "my@username.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.lacework.AlertChannelJiraCloud;
import com.pulumi.lacework.AlertChannelJiraCloudArgs;
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 example = new AlertChannelJiraCloud("example", AlertChannelJiraCloudArgs.builder()
.apiToken("abcd1234")
.configuration("Bidirectional")
.issueType("Bug")
.jiraUrl("mycompany.atlassian.net")
.projectKey("EXAMPLE")
.username("my@username.com")
.build());
}
}
resources:
example:
type: lacework:AlertChannelJiraCloud
properties:
apiToken: abcd1234
configuration: Bidirectional
issueType: Bug
jiraUrl: mycompany.atlassian.net
projectKey: EXAMPLE
username: my@username.com
Create AlertChannelJiraCloud Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AlertChannelJiraCloud(name: string, args: AlertChannelJiraCloudArgs, opts?: CustomResourceOptions);
@overload
def AlertChannelJiraCloud(resource_name: str,
args: AlertChannelJiraCloudArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AlertChannelJiraCloud(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_token: Optional[str] = None,
issue_type: Optional[str] = None,
jira_url: Optional[str] = None,
project_key: Optional[str] = None,
username: Optional[str] = None,
alert_channel_jira_cloud_id: Optional[str] = None,
configuration: Optional[str] = None,
custom_template_file: Optional[str] = None,
enabled: Optional[bool] = None,
group_issues_by: Optional[str] = None,
name: Optional[str] = None,
test_integration: Optional[bool] = None)
func NewAlertChannelJiraCloud(ctx *Context, name string, args AlertChannelJiraCloudArgs, opts ...ResourceOption) (*AlertChannelJiraCloud, error)
public AlertChannelJiraCloud(string name, AlertChannelJiraCloudArgs args, CustomResourceOptions? opts = null)
public AlertChannelJiraCloud(String name, AlertChannelJiraCloudArgs args)
public AlertChannelJiraCloud(String name, AlertChannelJiraCloudArgs args, CustomResourceOptions options)
type: lacework:AlertChannelJiraCloud
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 AlertChannelJiraCloudArgs
- 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 AlertChannelJiraCloudArgs
- 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 AlertChannelJiraCloudArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertChannelJiraCloudArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlertChannelJiraCloudArgs
- 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 alertChannelJiraCloudResource = new Lacework.AlertChannelJiraCloud("alertChannelJiraCloudResource", new()
{
ApiToken = "string",
IssueType = "string",
JiraUrl = "string",
ProjectKey = "string",
Username = "string",
AlertChannelJiraCloudId = "string",
Configuration = "string",
CustomTemplateFile = "string",
Enabled = false,
GroupIssuesBy = "string",
Name = "string",
TestIntegration = false,
});
example, err := lacework.NewAlertChannelJiraCloud(ctx, "alertChannelJiraCloudResource", &lacework.AlertChannelJiraCloudArgs{
ApiToken: pulumi.String("string"),
IssueType: pulumi.String("string"),
JiraUrl: pulumi.String("string"),
ProjectKey: pulumi.String("string"),
Username: pulumi.String("string"),
AlertChannelJiraCloudId: pulumi.String("string"),
Configuration: pulumi.String("string"),
CustomTemplateFile: pulumi.String("string"),
Enabled: pulumi.Bool(false),
GroupIssuesBy: pulumi.String("string"),
Name: pulumi.String("string"),
TestIntegration: pulumi.Bool(false),
})
var alertChannelJiraCloudResource = new AlertChannelJiraCloud("alertChannelJiraCloudResource", AlertChannelJiraCloudArgs.builder()
.apiToken("string")
.issueType("string")
.jiraUrl("string")
.projectKey("string")
.username("string")
.alertChannelJiraCloudId("string")
.configuration("string")
.customTemplateFile("string")
.enabled(false)
.groupIssuesBy("string")
.name("string")
.testIntegration(false)
.build());
alert_channel_jira_cloud_resource = lacework.AlertChannelJiraCloud("alertChannelJiraCloudResource",
api_token="string",
issue_type="string",
jira_url="string",
project_key="string",
username="string",
alert_channel_jira_cloud_id="string",
configuration="string",
custom_template_file="string",
enabled=False,
group_issues_by="string",
name="string",
test_integration=False)
const alertChannelJiraCloudResource = new lacework.AlertChannelJiraCloud("alertChannelJiraCloudResource", {
apiToken: "string",
issueType: "string",
jiraUrl: "string",
projectKey: "string",
username: "string",
alertChannelJiraCloudId: "string",
configuration: "string",
customTemplateFile: "string",
enabled: false,
groupIssuesBy: "string",
name: "string",
testIntegration: false,
});
type: lacework:AlertChannelJiraCloud
properties:
alertChannelJiraCloudId: string
apiToken: string
configuration: string
customTemplateFile: string
enabled: false
groupIssuesBy: string
issueType: string
jiraUrl: string
name: string
projectKey: string
testIntegration: false
username: string
AlertChannelJiraCloud 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 AlertChannelJiraCloud resource accepts the following input properties:
- Api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- Issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - Jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - Project
Key string - The project key for the Jira project where the new Jira issues should be created.
- Username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- Alert
Channel stringJira Cloud Id - Configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- Custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- Name string
- The Alert Channel integration name.
- Test
Integration bool - Whether to test the integration of an alert channel upon creation and modification
- Api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- Issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - Jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - Project
Key string - The project key for the Jira project where the new Jira issues should be created.
- Username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- Alert
Channel stringJira Cloud Id - Configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- Custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- Name string
- The Alert Channel integration name.
- Test
Integration bool - Whether to test the integration of an alert channel upon creation and modification
- api
Token String - The Jira API Token. For more information, see how to create a Jira API Token.
- issue
Type String - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url String - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - project
Key String - The project key for the Jira project where the new Jira issues should be created.
- username String
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel StringJira Cloud Id - configuration String
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- custom
Template StringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - group
Issues StringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- name String
- The Alert Channel integration name.
- test
Integration Boolean - Whether to test the integration of an alert channel upon creation and modification
- api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - project
Key string - The project key for the Jira project where the new Jira issues should be created.
- username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel stringJira Cloud Id - configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled boolean
- The state of the external integration. Defaults to
true
. - group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- name string
- The Alert Channel integration name.
- test
Integration boolean - Whether to test the integration of an alert channel upon creation and modification
- api_
token str - The Jira API Token. For more information, see how to create a Jira API Token.
- issue_
type str - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira_
url str - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - project_
key str - The project key for the Jira project where the new Jira issues should be created.
- username str
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert_
channel_ strjira_ cloud_ id - configuration str
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- custom_
template_ strfile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled bool
- The state of the external integration. Defaults to
true
. - group_
issues_ strby - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- name str
- The Alert Channel integration name.
- test_
integration bool - Whether to test the integration of an alert channel upon creation and modification
- api
Token String - The Jira API Token. For more information, see how to create a Jira API Token.
- issue
Type String - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url String - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - project
Key String - The project key for the Jira project where the new Jira issues should be created.
- username String
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel StringJira Cloud Id - configuration String
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- custom
Template StringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - group
Issues StringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- name String
- The Alert Channel integration name.
- test
Integration Boolean - Whether to test the integration of an alert channel upon creation and modification
Outputs
All input properties are implicitly available as output properties. Additionally, the AlertChannelJiraCloud resource produces the following output properties:
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Type
Name string
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Type
Name string
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - type
Name String
- created
Or stringUpdated By - created
Or stringUpdated Time - id string
- The provider-assigned unique ID for this managed resource.
- intg
Guid string - org
Level boolean - type
Name string
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - id str
- The provider-assigned unique ID for this managed resource.
- intg_
guid str - org_
level bool - type_
name str
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - type
Name String
Look up Existing AlertChannelJiraCloud Resource
Get an existing AlertChannelJiraCloud 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?: AlertChannelJiraCloudState, opts?: CustomResourceOptions): AlertChannelJiraCloud
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alert_channel_jira_cloud_id: Optional[str] = None,
api_token: Optional[str] = None,
configuration: Optional[str] = None,
created_or_updated_by: Optional[str] = None,
created_or_updated_time: Optional[str] = None,
custom_template_file: Optional[str] = None,
enabled: Optional[bool] = None,
group_issues_by: Optional[str] = None,
intg_guid: Optional[str] = None,
issue_type: Optional[str] = None,
jira_url: Optional[str] = None,
name: Optional[str] = None,
org_level: Optional[bool] = None,
project_key: Optional[str] = None,
test_integration: Optional[bool] = None,
type_name: Optional[str] = None,
username: Optional[str] = None) -> AlertChannelJiraCloud
func GetAlertChannelJiraCloud(ctx *Context, name string, id IDInput, state *AlertChannelJiraCloudState, opts ...ResourceOption) (*AlertChannelJiraCloud, error)
public static AlertChannelJiraCloud Get(string name, Input<string> id, AlertChannelJiraCloudState? state, CustomResourceOptions? opts = null)
public static AlertChannelJiraCloud get(String name, Output<String> id, AlertChannelJiraCloudState state, CustomResourceOptions options)
resources: _: type: lacework:AlertChannelJiraCloud 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.
- Alert
Channel stringJira Cloud Id - Api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- Configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- Intg
Guid string - Issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - Jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - Name string
- The Alert Channel integration name.
- Org
Level bool - Project
Key string - The project key for the Jira project where the new Jira issues should be created.
- Test
Integration bool - Whether to test the integration of an alert channel upon creation and modification
- Type
Name string - Username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- Alert
Channel stringJira Cloud Id - Api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- Configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- Intg
Guid string - Issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - Jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - Name string
- The Alert Channel integration name.
- Org
Level bool - Project
Key string - The project key for the Jira project where the new Jira issues should be created.
- Test
Integration bool - Whether to test the integration of an alert channel upon creation and modification
- Type
Name string - Username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel StringJira Cloud Id - api
Token String - The Jira API Token. For more information, see how to create a Jira API Token.
- configuration String
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- created
Or StringUpdated By - created
Or StringUpdated Time - custom
Template StringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - group
Issues StringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- intg
Guid String - issue
Type String - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url String - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - name String
- The Alert Channel integration name.
- org
Level Boolean - project
Key String - The project key for the Jira project where the new Jira issues should be created.
- test
Integration Boolean - Whether to test the integration of an alert channel upon creation and modification
- type
Name String - username String
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel stringJira Cloud Id - api
Token string - The Jira API Token. For more information, see how to create a Jira API Token.
- configuration string
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- created
Or stringUpdated By - created
Or stringUpdated Time - custom
Template stringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled boolean
- The state of the external integration. Defaults to
true
. - group
Issues stringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- intg
Guid string - issue
Type string - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url string - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - name string
- The Alert Channel integration name.
- org
Level boolean - project
Key string - The project key for the Jira project where the new Jira issues should be created.
- test
Integration boolean - Whether to test the integration of an alert channel upon creation and modification
- type
Name string - username string
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert_
channel_ strjira_ cloud_ id - api_
token str - The Jira API Token. For more information, see how to create a Jira API Token.
- configuration str
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - custom_
template_ strfile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled bool
- The state of the external integration. Defaults to
true
. - group_
issues_ strby - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- intg_
guid str - issue_
type str - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira_
url str - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - name str
- The Alert Channel integration name.
- org_
level bool - project_
key str - The project key for the Jira project where the new Jira issues should be created.
- test_
integration bool - Whether to test the integration of an alert channel upon creation and modification
- type_
name str - username str
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
- alert
Channel StringJira Cloud Id - api
Token String - The Jira API Token. For more information, see how to create a Jira API Token.
- configuration String
- Defines whether the integration is Unidirectional or Bidirectional. For more information, see more about Bidirectional Jira integrations. Defaults to
Unidirectional
. The available options are:- Unidirectional: A unidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated.
- Bidirectional: A bidirectional integration with Jira allows you to programatically generate a corresponding Jira issue for an alert. When the alert status is updated, the Jira status is updated, and vice-versa.
- created
Or StringUpdated By - created
Or StringUpdated Time - custom
Template StringFile - A Custom Template JSON file to populate fields in the new Jira issues.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - group
Issues StringBy - Defines how Lacework compliance events get grouped. Must be one of
Events
orResources
. Defaults toEvents
. The available options are:- Events: Single Jira issue will be created when compliance events of the same type but from different resources are detected by Lacework. For example, if three different S3 resources are generating the same compliance event, only one Jira ticket is created.
- Resources: Multiple Jira issues will be created when multiple resources are generating the same compliance event. For example, if three different S3 resources are generating the same compliance event, three Jira issues are created.
- intg
Guid String - issue
Type String - The Jira Issue type (such as a
Bug
) to create when a new Jira issue is created. - jira
Url String - The URL of your Jira implementation without https protocol (
https://
). For example,mycompany.atlassian.net
ormycompany.jira.com
. - name String
- The Alert Channel integration name.
- org
Level Boolean - project
Key String - The project key for the Jira project where the new Jira issues should be created.
- test
Integration Boolean - Whether to test the integration of an alert channel upon creation and modification
- type
Name String - username String
- The Jira user name. Lacework recommends a dedicated Jira user. See above for more information.
Import
A Lacework Jira Cloud Alert Channel integration can be imported using a INT_GUID
, e.g.
$ pulumi import lacework:index/alertChannelJiraCloud:AlertChannelJiraCloud example EXAMPLE_1234BAE1E42182964D23973F44CFEA3C4AB63B99E9A1EC5
-> Note: To retrieve the INT_GUID
from existing integrations in your account, use the
Lacework CLI command lacework alert-channel list
. To install this tool follow
this documentation.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- lacework lacework/terraform-provider-lacework
- License
- Notes
- This Pulumi package is based on the
lacework
Terraform Provider.