published on Thursday, May 14, 2026 by elastic
published on Thursday, May 14, 2026 by elastic
Create FleetIntegration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FleetIntegration(name: string, args: FleetIntegrationArgs, opts?: CustomResourceOptions);@overload
def FleetIntegration(resource_name: str,
args: FleetIntegrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FleetIntegration(resource_name: str,
opts: Optional[ResourceOptions] = None,
version: Optional[str] = None,
force: Optional[bool] = None,
ignore_constraints: Optional[bool] = None,
ignore_mapping_update_errors: Optional[bool] = None,
kibana_connections: Optional[Sequence[FleetIntegrationKibanaConnectionArgs]] = None,
name: Optional[str] = None,
prerelease: Optional[bool] = None,
skip_data_stream_rollover: Optional[bool] = None,
skip_destroy: Optional[bool] = None,
space_id: Optional[str] = None)func NewFleetIntegration(ctx *Context, name string, args FleetIntegrationArgs, opts ...ResourceOption) (*FleetIntegration, error)public FleetIntegration(string name, FleetIntegrationArgs args, CustomResourceOptions? opts = null)
public FleetIntegration(String name, FleetIntegrationArgs args)
public FleetIntegration(String name, FleetIntegrationArgs args, CustomResourceOptions options)
type: elasticstack:FleetIntegration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "elasticstack_fleetintegration" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args FleetIntegrationArgs
- 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 FleetIntegrationArgs
- 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 FleetIntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FleetIntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FleetIntegrationArgs
- 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 fleetIntegrationResource = new Elasticstack.FleetIntegration("fleetIntegrationResource", new()
{
Version = "string",
Force = false,
IgnoreConstraints = false,
IgnoreMappingUpdateErrors = false,
KibanaConnections = new[]
{
new Elasticstack.Inputs.FleetIntegrationKibanaConnectionArgs
{
ApiKey = "string",
BearerToken = "string",
CaCerts = new[]
{
"string",
},
Endpoints = new[]
{
"string",
},
Insecure = false,
Password = "string",
Username = "string",
},
},
Name = "string",
Prerelease = false,
SkipDataStreamRollover = false,
SkipDestroy = false,
SpaceId = "string",
});
example, err := elasticstack.NewFleetIntegration(ctx, "fleetIntegrationResource", &elasticstack.FleetIntegrationArgs{
Version: pulumi.String("string"),
Force: pulumi.Bool(false),
IgnoreConstraints: pulumi.Bool(false),
IgnoreMappingUpdateErrors: pulumi.Bool(false),
KibanaConnections: elasticstack.FleetIntegrationKibanaConnectionArray{
&elasticstack.FleetIntegrationKibanaConnectionArgs{
ApiKey: pulumi.String("string"),
BearerToken: pulumi.String("string"),
CaCerts: pulumi.StringArray{
pulumi.String("string"),
},
Endpoints: pulumi.StringArray{
pulumi.String("string"),
},
Insecure: pulumi.Bool(false),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Prerelease: pulumi.Bool(false),
SkipDataStreamRollover: pulumi.Bool(false),
SkipDestroy: pulumi.Bool(false),
SpaceId: pulumi.String("string"),
})
resource "elasticstack_fleetintegration" "fleetIntegrationResource" {
version = "string"
force = false
ignore_constraints = false
ignore_mapping_update_errors = false
kibana_connections {
api_key = "string"
bearer_token = "string"
ca_certs = ["string"]
endpoints = ["string"]
insecure = false
password = "string"
username = "string"
}
name = "string"
prerelease = false
skip_data_stream_rollover = false
skip_destroy = false
space_id = "string"
}
var fleetIntegrationResource = new FleetIntegration("fleetIntegrationResource", FleetIntegrationArgs.builder()
.version("string")
.force(false)
.ignoreConstraints(false)
.ignoreMappingUpdateErrors(false)
.kibanaConnections(FleetIntegrationKibanaConnectionArgs.builder()
.apiKey("string")
.bearerToken("string")
.caCerts("string")
.endpoints("string")
.insecure(false)
.password("string")
.username("string")
.build())
.name("string")
.prerelease(false)
.skipDataStreamRollover(false)
.skipDestroy(false)
.spaceId("string")
.build());
fleet_integration_resource = elasticstack.FleetIntegration("fleetIntegrationResource",
version="string",
force=False,
ignore_constraints=False,
ignore_mapping_update_errors=False,
kibana_connections=[{
"api_key": "string",
"bearer_token": "string",
"ca_certs": ["string"],
"endpoints": ["string"],
"insecure": False,
"password": "string",
"username": "string",
}],
name="string",
prerelease=False,
skip_data_stream_rollover=False,
skip_destroy=False,
space_id="string")
const fleetIntegrationResource = new elasticstack.FleetIntegration("fleetIntegrationResource", {
version: "string",
force: false,
ignoreConstraints: false,
ignoreMappingUpdateErrors: false,
kibanaConnections: [{
apiKey: "string",
bearerToken: "string",
caCerts: ["string"],
endpoints: ["string"],
insecure: false,
password: "string",
username: "string",
}],
name: "string",
prerelease: false,
skipDataStreamRollover: false,
skipDestroy: false,
spaceId: "string",
});
type: elasticstack:FleetIntegration
properties:
force: false
ignoreConstraints: false
ignoreMappingUpdateErrors: false
kibanaConnections:
- apiKey: string
bearerToken: string
caCerts:
- string
endpoints:
- string
insecure: false
password: string
username: string
name: string
prerelease: false
skipDataStreamRollover: false
skipDestroy: false
spaceId: string
version: string
FleetIntegration 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 FleetIntegration resource accepts the following input properties:
- Version string
- The integration package version.
- Force bool
- Set to true to force the requested action.
- Ignore
Constraints bool - Set to true to ignore constraint errors during package installation.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections List<FleetIntegration Kibana Connection> - Kibana connection configuration block.
- Name string
- The integration package name.
- Prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed.
- Version string
- The integration package version.
- Force bool
- Set to true to force the requested action.
- Ignore
Constraints bool - Set to true to ignore constraint errors during package installation.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections []FleetIntegration Kibana Connection Args - Kibana connection configuration block.
- Name string
- The integration package name.
- Prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed.
- version string
- The integration package version.
- force bool
- Set to true to force the requested action.
- ignore_
constraints bool - Set to true to ignore constraint errors during package installation.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections list(object) - Kibana connection configuration block.
- name string
- The integration package name.
- prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id string - The Kibana space ID where this integration package should be installed.
- version String
- The integration package version.
- force Boolean
- Set to true to force the requested action.
- ignore
Constraints Boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<FleetIntegration Kibana Connection> - Kibana connection configuration block.
- name String
- The integration package name.
- prerelease Boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed.
- version string
- The integration package version.
- force boolean
- Set to true to force the requested action.
- ignore
Constraints boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping booleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections FleetIntegration Kibana Connection[] - Kibana connection configuration block.
- name string
- The integration package name.
- prerelease boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data booleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy boolean - space
Id string - The Kibana space ID where this integration package should be installed.
- version str
- The integration package version.
- force bool
- Set to true to force the requested action.
- ignore_
constraints bool - Set to true to ignore constraint errors during package installation.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections Sequence[FleetIntegration Kibana Connection Args] - Kibana connection configuration block.
- name str
- The integration package name.
- prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id str - The Kibana space ID where this integration package should be installed.
- version String
- The integration package version.
- force Boolean
- Set to true to force the requested action.
- ignore
Constraints Boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- name String
- The integration package name.
- prerelease Boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed.
Outputs
All input properties are implicitly available as output properties. Additionally, the FleetIntegration 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 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 FleetIntegration Resource
Get an existing FleetIntegration 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?: FleetIntegrationState, opts?: CustomResourceOptions): FleetIntegration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
force: Optional[bool] = None,
ignore_constraints: Optional[bool] = None,
ignore_mapping_update_errors: Optional[bool] = None,
kibana_connections: Optional[Sequence[FleetIntegrationKibanaConnectionArgs]] = None,
name: Optional[str] = None,
prerelease: Optional[bool] = None,
skip_data_stream_rollover: Optional[bool] = None,
skip_destroy: Optional[bool] = None,
space_id: Optional[str] = None,
version: Optional[str] = None) -> FleetIntegrationfunc GetFleetIntegration(ctx *Context, name string, id IDInput, state *FleetIntegrationState, opts ...ResourceOption) (*FleetIntegration, error)public static FleetIntegration Get(string name, Input<string> id, FleetIntegrationState? state, CustomResourceOptions? opts = null)public static FleetIntegration get(String name, Output<String> id, FleetIntegrationState state, CustomResourceOptions options)resources: _: type: elasticstack:FleetIntegration get: id: ${id}import {
to = elasticstack_fleetintegration.example
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.
- Force bool
- Set to true to force the requested action.
- Ignore
Constraints bool - Set to true to ignore constraint errors during package installation.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections List<FleetIntegration Kibana Connection> - Kibana connection configuration block.
- Name string
- The integration package name.
- Prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed.
- Version string
- The integration package version.
- Force bool
- Set to true to force the requested action.
- Ignore
Constraints bool - Set to true to ignore constraint errors during package installation.
- Ignore
Mapping boolUpdate Errors - Set to true to ignore mapping update errors during package installation.
- Kibana
Connections []FleetIntegration Kibana Connection Args - Kibana connection configuration block.
- Name string
- The integration package name.
- Prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- Skip
Data boolStream Rollover - Set to true to skip data stream rollover during package installation.
- Skip
Destroy bool - Space
Id string - The Kibana space ID where this integration package should be installed.
- Version string
- The integration package version.
- force bool
- Set to true to force the requested action.
- ignore_
constraints bool - Set to true to ignore constraint errors during package installation.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections list(object) - Kibana connection configuration block.
- name string
- The integration package name.
- prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id string - The Kibana space ID where this integration package should be installed.
- version string
- The integration package version.
- force Boolean
- Set to true to force the requested action.
- ignore
Constraints Boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<FleetIntegration Kibana Connection> - Kibana connection configuration block.
- name String
- The integration package name.
- prerelease Boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed.
- version String
- The integration package version.
- force boolean
- Set to true to force the requested action.
- ignore
Constraints boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping booleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections FleetIntegration Kibana Connection[] - Kibana connection configuration block.
- name string
- The integration package name.
- prerelease boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data booleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy boolean - space
Id string - The Kibana space ID where this integration package should be installed.
- version string
- The integration package version.
- force bool
- Set to true to force the requested action.
- ignore_
constraints bool - Set to true to ignore constraint errors during package installation.
- ignore_
mapping_ boolupdate_ errors - Set to true to ignore mapping update errors during package installation.
- kibana_
connections Sequence[FleetIntegration Kibana Connection Args] - Kibana connection configuration block.
- name str
- The integration package name.
- prerelease bool
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip_
data_ boolstream_ rollover - Set to true to skip data stream rollover during package installation.
- skip_
destroy bool - space_
id str - The Kibana space ID where this integration package should be installed.
- version str
- The integration package version.
- force Boolean
- Set to true to force the requested action.
- ignore
Constraints Boolean - Set to true to ignore constraint errors during package installation.
- ignore
Mapping BooleanUpdate Errors - Set to true to ignore mapping update errors during package installation.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- name String
- The integration package name.
- prerelease Boolean
- Set to true to allow installation of prerelease (beta, non-GA) packages.
- skip
Data BooleanStream Rollover - Set to true to skip data stream rollover during package installation.
- skip
Destroy Boolean - space
Id String - The Kibana space ID where this integration package should be installed.
- version String
- The integration package version.
Supporting Types
FleetIntegrationKibanaConnection, FleetIntegrationKibanaConnectionArgs
- Api
Key string - API Key to use for authentication to Kibana
- Bearer
Token string - Bearer Token to use for authentication to Kibana
- Ca
Certs List<string> - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- Endpoints List<string>
- Insecure bool
- Disable TLS certificate validation
- Password string
- Password to use for API authentication to Kibana.
- Username string
- Username to use for API authentication to Kibana.
- Api
Key string - API Key to use for authentication to Kibana
- Bearer
Token string - Bearer Token to use for authentication to Kibana
- Ca
Certs []string - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- Endpoints []string
- Insecure bool
- Disable TLS certificate validation
- Password string
- Password to use for API authentication to Kibana.
- Username string
- Username to use for API authentication to Kibana.
- api_
key string - API Key to use for authentication to Kibana
- bearer_
token string - Bearer Token to use for authentication to Kibana
- ca_
certs list(string) - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- endpoints list(string)
- insecure bool
- Disable TLS certificate validation
- password string
- Password to use for API authentication to Kibana.
- username string
- Username to use for API authentication to Kibana.
- api
Key String - API Key to use for authentication to Kibana
- bearer
Token String - Bearer Token to use for authentication to Kibana
- ca
Certs List<String> - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- endpoints List<String>
- insecure Boolean
- Disable TLS certificate validation
- password String
- Password to use for API authentication to Kibana.
- username String
- Username to use for API authentication to Kibana.
- api
Key string - API Key to use for authentication to Kibana
- bearer
Token string - Bearer Token to use for authentication to Kibana
- ca
Certs string[] - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- endpoints string[]
- insecure boolean
- Disable TLS certificate validation
- password string
- Password to use for API authentication to Kibana.
- username string
- Username to use for API authentication to Kibana.
- api_
key str - API Key to use for authentication to Kibana
- bearer_
token str - Bearer Token to use for authentication to Kibana
- ca_
certs Sequence[str] - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- endpoints Sequence[str]
- insecure bool
- Disable TLS certificate validation
- password str
- Password to use for API authentication to Kibana.
- username str
- Username to use for API authentication to Kibana.
- api
Key String - API Key to use for authentication to Kibana
- bearer
Token String - Bearer Token to use for authentication to Kibana
- ca
Certs List<String> - A list of paths to CA certificates to validate the certificate presented by the Kibana server.
- endpoints List<String>
- insecure Boolean
- Disable TLS certificate validation
- password String
- Password to use for API authentication to Kibana.
- username String
- Username to use for API authentication to Kibana.
Package Details
- Repository
- elasticstack elastic/terraform-provider-elasticstack
- License
- Notes
- This Pulumi package is based on the
elasticstackTerraform Provider.
published on Thursday, May 14, 2026 by elastic
