1. Packages
  2. Packages
  3. Elasticstack Provider
  4. API Docs
  5. FleetIntegration
Viewing docs for elasticstack 0.15.0
published on Thursday, May 14, 2026 by elastic
Viewing docs for elasticstack 0.15.0
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.
    IgnoreConstraints bool
    Set to true to ignore constraint errors during package installation.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections List<FleetIntegrationKibanaConnection>
    Kibana connection configuration block.
    Name string
    The integration package name.
    Prerelease bool
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId 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.
    IgnoreConstraints bool
    Set to true to ignore constraint errors during package installation.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections []FleetIntegrationKibanaConnectionArgs
    Kibana connection configuration block.
    Name string
    The integration package name.
    Prerelease bool
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId 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_update_errors bool
    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_stream_rollover bool
    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.
    ignoreConstraints Boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<FleetIntegrationKibanaConnection>
    Kibana connection configuration block.
    name String
    The integration package name.
    prerelease Boolean
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId 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.
    ignoreConstraints boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections FleetIntegrationKibanaConnection[]
    Kibana connection configuration block.
    name string
    The integration package name.
    prerelease boolean
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    skipDataStreamRollover boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy boolean
    spaceId 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_update_errors bool
    Set to true to ignore mapping update errors during package installation.
    kibana_connections Sequence[FleetIntegrationKibanaConnectionArgs]
    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_stream_rollover bool
    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.
    ignoreConstraints Boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections 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.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId 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) -> FleetIntegration
    func 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.
    The following state arguments are supported:
    Force bool
    Set to true to force the requested action.
    IgnoreConstraints bool
    Set to true to ignore constraint errors during package installation.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections List<FleetIntegrationKibanaConnection>
    Kibana connection configuration block.
    Name string
    The integration package name.
    Prerelease bool
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId 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.
    IgnoreConstraints bool
    Set to true to ignore constraint errors during package installation.
    IgnoreMappingUpdateErrors bool
    Set to true to ignore mapping update errors during package installation.
    KibanaConnections []FleetIntegrationKibanaConnectionArgs
    Kibana connection configuration block.
    Name string
    The integration package name.
    Prerelease bool
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    SkipDataStreamRollover bool
    Set to true to skip data stream rollover during package installation.
    SkipDestroy bool
    SpaceId 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_update_errors bool
    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_stream_rollover bool
    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.
    ignoreConstraints Boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections List<FleetIntegrationKibanaConnection>
    Kibana connection configuration block.
    name String
    The integration package name.
    prerelease Boolean
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId 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.
    ignoreConstraints boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections FleetIntegrationKibanaConnection[]
    Kibana connection configuration block.
    name string
    The integration package name.
    prerelease boolean
    Set to true to allow installation of prerelease (beta, non-GA) packages.
    skipDataStreamRollover boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy boolean
    spaceId 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_update_errors bool
    Set to true to ignore mapping update errors during package installation.
    kibana_connections Sequence[FleetIntegrationKibanaConnectionArgs]
    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_stream_rollover bool
    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.
    ignoreConstraints Boolean
    Set to true to ignore constraint errors during package installation.
    ignoreMappingUpdateErrors Boolean
    Set to true to ignore mapping update errors during package installation.
    kibanaConnections 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.
    skipDataStreamRollover Boolean
    Set to true to skip data stream rollover during package installation.
    skipDestroy Boolean
    spaceId String
    The Kibana space ID where this integration package should be installed.
    version String
    The integration package version.

    Supporting Types

    FleetIntegrationKibanaConnection, FleetIntegrationKibanaConnectionArgs

    ApiKey string
    API Key to use for authentication to Kibana
    BearerToken string
    Bearer Token to use for authentication to Kibana
    CaCerts 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.
    ApiKey string
    API Key to use for authentication to Kibana
    BearerToken string
    Bearer Token to use for authentication to Kibana
    CaCerts []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.
    apiKey String
    API Key to use for authentication to Kibana
    bearerToken String
    Bearer Token to use for authentication to Kibana
    caCerts 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.
    apiKey string
    API Key to use for authentication to Kibana
    bearerToken string
    Bearer Token to use for authentication to Kibana
    caCerts 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.
    apiKey String
    API Key to use for authentication to Kibana
    bearerToken String
    Bearer Token to use for authentication to Kibana
    caCerts 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 elasticstack Terraform Provider.
    Viewing docs for elasticstack 0.15.0
    published on Thursday, May 14, 2026 by elastic
      Try Pulumi Cloud free. Your team will thank you.