published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Event Forwarder Email resource
Create EventForwarderEmail Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EventForwarderEmail(name: string, args?: EventForwarderEmailArgs, opts?: CustomResourceOptions);@overload
def EventForwarderEmail(resource_name: str,
args: Optional[EventForwarderEmailArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def EventForwarderEmail(resource_name: str,
opts: Optional[ResourceOptions] = None,
auth_methods_event_source_locations: Optional[Sequence[str]] = None,
description: Optional[str] = None,
email_to: Optional[str] = None,
enable: Optional[str] = None,
event_forwarder_email_id: Optional[str] = None,
event_types: Optional[Sequence[str]] = None,
every: Optional[str] = None,
gateways_event_source_locations: Optional[Sequence[str]] = None,
include_error: Optional[str] = None,
items_event_source_locations: Optional[Sequence[str]] = None,
keep_prev_version: Optional[str] = None,
key: Optional[str] = None,
name: Optional[str] = None,
override_url: Optional[str] = None,
runner_type: Optional[str] = None,
targets_event_source_locations: Optional[Sequence[str]] = None)func NewEventForwarderEmail(ctx *Context, name string, args *EventForwarderEmailArgs, opts ...ResourceOption) (*EventForwarderEmail, error)public EventForwarderEmail(string name, EventForwarderEmailArgs? args = null, CustomResourceOptions? opts = null)
public EventForwarderEmail(String name, EventForwarderEmailArgs args)
public EventForwarderEmail(String name, EventForwarderEmailArgs args, CustomResourceOptions options)
type: akeyless:EventForwarderEmail
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 EventForwarderEmailArgs
- 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 EventForwarderEmailArgs
- 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 EventForwarderEmailArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EventForwarderEmailArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EventForwarderEmailArgs
- 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 eventForwarderEmailResource = new Akeyless.EventForwarderEmail("eventForwarderEmailResource", new()
{
AuthMethodsEventSourceLocations = new[]
{
"string",
},
Description = "string",
EmailTo = "string",
Enable = "string",
EventForwarderEmailId = "string",
EventTypes = new[]
{
"string",
},
Every = "string",
GatewaysEventSourceLocations = new[]
{
"string",
},
IncludeError = "string",
ItemsEventSourceLocations = new[]
{
"string",
},
KeepPrevVersion = "string",
Key = "string",
Name = "string",
OverrideUrl = "string",
RunnerType = "string",
TargetsEventSourceLocations = new[]
{
"string",
},
});
example, err := akeyless.NewEventForwarderEmail(ctx, "eventForwarderEmailResource", &akeyless.EventForwarderEmailArgs{
AuthMethodsEventSourceLocations: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
EmailTo: pulumi.String("string"),
Enable: pulumi.String("string"),
EventForwarderEmailId: pulumi.String("string"),
EventTypes: pulumi.StringArray{
pulumi.String("string"),
},
Every: pulumi.String("string"),
GatewaysEventSourceLocations: pulumi.StringArray{
pulumi.String("string"),
},
IncludeError: pulumi.String("string"),
ItemsEventSourceLocations: pulumi.StringArray{
pulumi.String("string"),
},
KeepPrevVersion: pulumi.String("string"),
Key: pulumi.String("string"),
Name: pulumi.String("string"),
OverrideUrl: pulumi.String("string"),
RunnerType: pulumi.String("string"),
TargetsEventSourceLocations: pulumi.StringArray{
pulumi.String("string"),
},
})
var eventForwarderEmailResource = new EventForwarderEmail("eventForwarderEmailResource", EventForwarderEmailArgs.builder()
.authMethodsEventSourceLocations("string")
.description("string")
.emailTo("string")
.enable("string")
.eventForwarderEmailId("string")
.eventTypes("string")
.every("string")
.gatewaysEventSourceLocations("string")
.includeError("string")
.itemsEventSourceLocations("string")
.keepPrevVersion("string")
.key("string")
.name("string")
.overrideUrl("string")
.runnerType("string")
.targetsEventSourceLocations("string")
.build());
event_forwarder_email_resource = akeyless.EventForwarderEmail("eventForwarderEmailResource",
auth_methods_event_source_locations=["string"],
description="string",
email_to="string",
enable="string",
event_forwarder_email_id="string",
event_types=["string"],
every="string",
gateways_event_source_locations=["string"],
include_error="string",
items_event_source_locations=["string"],
keep_prev_version="string",
key="string",
name="string",
override_url="string",
runner_type="string",
targets_event_source_locations=["string"])
const eventForwarderEmailResource = new akeyless.EventForwarderEmail("eventForwarderEmailResource", {
authMethodsEventSourceLocations: ["string"],
description: "string",
emailTo: "string",
enable: "string",
eventForwarderEmailId: "string",
eventTypes: ["string"],
every: "string",
gatewaysEventSourceLocations: ["string"],
includeError: "string",
itemsEventSourceLocations: ["string"],
keepPrevVersion: "string",
key: "string",
name: "string",
overrideUrl: "string",
runnerType: "string",
targetsEventSourceLocations: ["string"],
});
type: akeyless:EventForwarderEmail
properties:
authMethodsEventSourceLocations:
- string
description: string
emailTo: string
enable: string
eventForwarderEmailId: string
eventTypes:
- string
every: string
gatewaysEventSourceLocations:
- string
includeError: string
itemsEventSourceLocations:
- string
keepPrevVersion: string
key: string
name: string
overrideUrl: string
runnerType: string
targetsEventSourceLocations:
- string
EventForwarderEmail 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 EventForwarderEmail resource accepts the following input properties:
- Auth
Methods List<string>Event Source Locations - Auth Method Event sources
- Description string
- Description of the object
- Email
To string - A comma seperated list of email addresses to send event to
- Enable string
- Enable/Disable Event Forwarder [true/false]
- Event
Forwarder stringEmail Id - The ID of this resource.
- Event
Types List<string> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- Every string
- Rate of periodic runner repetition in hours
- Gateways
Event List<string>Source Locations - Event sources
- Include
Error string - Set this option to include event errors details [true/false]
- Items
Event List<string>Source Locations - Items Event sources
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- Name string
- Event Forwarder name
- Override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- Runner
Type string - Event Forwarder runner type [immediate/periodic]
- Targets
Event List<string>Source Locations - Targets Event sources
- Auth
Methods []stringEvent Source Locations - Auth Method Event sources
- Description string
- Description of the object
- Email
To string - A comma seperated list of email addresses to send event to
- Enable string
- Enable/Disable Event Forwarder [true/false]
- Event
Forwarder stringEmail Id - The ID of this resource.
- Event
Types []string - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- Every string
- Rate of periodic runner repetition in hours
- Gateways
Event []stringSource Locations - Event sources
- Include
Error string - Set this option to include event errors details [true/false]
- Items
Event []stringSource Locations - Items Event sources
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- Name string
- Event Forwarder name
- Override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- Runner
Type string - Event Forwarder runner type [immediate/periodic]
- Targets
Event []stringSource Locations - Targets Event sources
- auth
Methods List<String>Event Source Locations - Auth Method Event sources
- description String
- Description of the object
- email
To String - A comma seperated list of email addresses to send event to
- enable String
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder StringEmail Id - The ID of this resource.
- event
Types List<String> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every String
- Rate of periodic runner repetition in hours
- gateways
Event List<String>Source Locations - Event sources
- include
Error String - Set this option to include event errors details [true/false]
- items
Event List<String>Source Locations - Items Event sources
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name String
- Event Forwarder name
- override
Url String - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type String - Event Forwarder runner type [immediate/periodic]
- targets
Event List<String>Source Locations - Targets Event sources
- auth
Methods string[]Event Source Locations - Auth Method Event sources
- description string
- Description of the object
- email
To string - A comma seperated list of email addresses to send event to
- enable string
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder stringEmail Id - The ID of this resource.
- event
Types string[] - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every string
- Rate of periodic runner repetition in hours
- gateways
Event string[]Source Locations - Event sources
- include
Error string - Set this option to include event errors details [true/false]
- items
Event string[]Source Locations - Items Event sources
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name string
- Event Forwarder name
- override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type string - Event Forwarder runner type [immediate/periodic]
- targets
Event string[]Source Locations - Targets Event sources
- auth_
methods_ Sequence[str]event_ source_ locations - Auth Method Event sources
- description str
- Description of the object
- email_
to str - A comma seperated list of email addresses to send event to
- enable str
- Enable/Disable Event Forwarder [true/false]
- event_
forwarder_ stremail_ id - The ID of this resource.
- event_
types Sequence[str] - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every str
- Rate of periodic runner repetition in hours
- gateways_
event_ Sequence[str]source_ locations - Event sources
- include_
error str - Set this option to include event errors details [true/false]
- items_
event_ Sequence[str]source_ locations - Items Event sources
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key str
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name str
- Event Forwarder name
- override_
url str - Override Akeyless default URL with your Gateway url (port 18888)
- runner_
type str - Event Forwarder runner type [immediate/periodic]
- targets_
event_ Sequence[str]source_ locations - Targets Event sources
- auth
Methods List<String>Event Source Locations - Auth Method Event sources
- description String
- Description of the object
- email
To String - A comma seperated list of email addresses to send event to
- enable String
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder StringEmail Id - The ID of this resource.
- event
Types List<String> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every String
- Rate of periodic runner repetition in hours
- gateways
Event List<String>Source Locations - Event sources
- include
Error String - Set this option to include event errors details [true/false]
- items
Event List<String>Source Locations - Items Event sources
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name String
- Event Forwarder name
- override
Url String - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type String - Event Forwarder runner type [immediate/periodic]
- targets
Event List<String>Source Locations - Targets Event sources
Outputs
All input properties are implicitly available as output properties. Additionally, the EventForwarderEmail 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 EventForwarderEmail Resource
Get an existing EventForwarderEmail 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?: EventForwarderEmailState, opts?: CustomResourceOptions): EventForwarderEmail@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auth_methods_event_source_locations: Optional[Sequence[str]] = None,
description: Optional[str] = None,
email_to: Optional[str] = None,
enable: Optional[str] = None,
event_forwarder_email_id: Optional[str] = None,
event_types: Optional[Sequence[str]] = None,
every: Optional[str] = None,
gateways_event_source_locations: Optional[Sequence[str]] = None,
include_error: Optional[str] = None,
items_event_source_locations: Optional[Sequence[str]] = None,
keep_prev_version: Optional[str] = None,
key: Optional[str] = None,
name: Optional[str] = None,
override_url: Optional[str] = None,
runner_type: Optional[str] = None,
targets_event_source_locations: Optional[Sequence[str]] = None) -> EventForwarderEmailfunc GetEventForwarderEmail(ctx *Context, name string, id IDInput, state *EventForwarderEmailState, opts ...ResourceOption) (*EventForwarderEmail, error)public static EventForwarderEmail Get(string name, Input<string> id, EventForwarderEmailState? state, CustomResourceOptions? opts = null)public static EventForwarderEmail get(String name, Output<String> id, EventForwarderEmailState state, CustomResourceOptions options)resources: _: type: akeyless:EventForwarderEmail 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.
- Auth
Methods List<string>Event Source Locations - Auth Method Event sources
- Description string
- Description of the object
- Email
To string - A comma seperated list of email addresses to send event to
- Enable string
- Enable/Disable Event Forwarder [true/false]
- Event
Forwarder stringEmail Id - The ID of this resource.
- Event
Types List<string> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- Every string
- Rate of periodic runner repetition in hours
- Gateways
Event List<string>Source Locations - Event sources
- Include
Error string - Set this option to include event errors details [true/false]
- Items
Event List<string>Source Locations - Items Event sources
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- Name string
- Event Forwarder name
- Override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- Runner
Type string - Event Forwarder runner type [immediate/periodic]
- Targets
Event List<string>Source Locations - Targets Event sources
- Auth
Methods []stringEvent Source Locations - Auth Method Event sources
- Description string
- Description of the object
- Email
To string - A comma seperated list of email addresses to send event to
- Enable string
- Enable/Disable Event Forwarder [true/false]
- Event
Forwarder stringEmail Id - The ID of this resource.
- Event
Types []string - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- Every string
- Rate of periodic runner repetition in hours
- Gateways
Event []stringSource Locations - Event sources
- Include
Error string - Set this option to include event errors details [true/false]
- Items
Event []stringSource Locations - Items Event sources
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- Name string
- Event Forwarder name
- Override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- Runner
Type string - Event Forwarder runner type [immediate/periodic]
- Targets
Event []stringSource Locations - Targets Event sources
- auth
Methods List<String>Event Source Locations - Auth Method Event sources
- description String
- Description of the object
- email
To String - A comma seperated list of email addresses to send event to
- enable String
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder StringEmail Id - The ID of this resource.
- event
Types List<String> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every String
- Rate of periodic runner repetition in hours
- gateways
Event List<String>Source Locations - Event sources
- include
Error String - Set this option to include event errors details [true/false]
- items
Event List<String>Source Locations - Items Event sources
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name String
- Event Forwarder name
- override
Url String - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type String - Event Forwarder runner type [immediate/periodic]
- targets
Event List<String>Source Locations - Targets Event sources
- auth
Methods string[]Event Source Locations - Auth Method Event sources
- description string
- Description of the object
- email
To string - A comma seperated list of email addresses to send event to
- enable string
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder stringEmail Id - The ID of this resource.
- event
Types string[] - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every string
- Rate of periodic runner repetition in hours
- gateways
Event string[]Source Locations - Event sources
- include
Error string - Set this option to include event errors details [true/false]
- items
Event string[]Source Locations - Items Event sources
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key string
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name string
- Event Forwarder name
- override
Url string - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type string - Event Forwarder runner type [immediate/periodic]
- targets
Event string[]Source Locations - Targets Event sources
- auth_
methods_ Sequence[str]event_ source_ locations - Auth Method Event sources
- description str
- Description of the object
- email_
to str - A comma seperated list of email addresses to send event to
- enable str
- Enable/Disable Event Forwarder [true/false]
- event_
forwarder_ stremail_ id - The ID of this resource.
- event_
types Sequence[str] - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every str
- Rate of periodic runner repetition in hours
- gateways_
event_ Sequence[str]source_ locations - Event sources
- include_
error str - Set this option to include event errors details [true/false]
- items_
event_ Sequence[str]source_ locations - Items Event sources
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key str
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name str
- Event Forwarder name
- override_
url str - Override Akeyless default URL with your Gateway url (port 18888)
- runner_
type str - Event Forwarder runner type [immediate/periodic]
- targets_
event_ Sequence[str]source_ locations - Targets Event sources
- auth
Methods List<String>Event Source Locations - Auth Method Event sources
- description String
- Description of the object
- email
To String - A comma seperated list of email addresses to send event to
- enable String
- Enable/Disable Event Forwarder [true/false]
- event
Forwarder StringEmail Id - The ID of this resource.
- event
Types List<String> - List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync]
- every String
- Rate of periodic runner repetition in hours
- gateways
Event List<String>Source Locations - Event sources
- include
Error String - Set this option to include event errors details [true/false]
- items
Event List<String>Source Locations - Items Event sources
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used)
- name String
- Event Forwarder name
- override
Url String - Override Akeyless default URL with your Gateway url (port 18888)
- runner
Type String - Event Forwarder runner type [immediate/periodic]
- targets
Event List<String>Source Locations - Targets Event sources
Package Details
- Repository
- akeyless akeyless-community/terraform-provider-akeyless
- License
- Notes
- This Pulumi package is based on the
akeylessTerraform Provider.
published on Monday, Apr 27, 2026 by akeyless-community
