published on Sunday, Sep 13, 2026 by elastic
published on Sunday, Sep 13, 2026 by elastic
Creates or updates a Kibana synthetics parameter.
See Working with secrets and sensitive values and API docs
Parameters are scoped to a Kibana space. Set space_id to the target space identifier; when omitted, the resource uses the default space (space_id is computed as "default"). Changing space_id forces replacement of the parameter.
The computed id is a composite identifier: <space_id>/<parameter_uuid>, where the UUID is assigned by Kibana.
Import accepts a bare parameter UUID (treated as the default space, with id set to default/<parameter_uuid>) or the composite form <space_id>/<parameter_uuid>.
Example (parameter in a named space):
import * as pulumi from "@pulumi/pulumi";
import * as elasticstack from "@pulumi/elasticstack";
const example = new elasticstack.KibanaSyntheticsParameter("example", {
spaceId: "my-space",
key: "example_key",
value: "example_value",
description: "Example description in a named space",
tags: [
"tag-a",
"tag-b",
],
});
import pulumi
import pulumi_elasticstack as elasticstack
example = elasticstack.KibanaSyntheticsParameter("example",
space_id="my-space",
key="example_key",
value="example_value",
description="Example description in a named space",
tags=[
"tag-a",
"tag-b",
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/elasticstack/elasticstack"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticstack.NewKibanaSyntheticsParameter(ctx, "example", &elasticstack.KibanaSyntheticsParameterArgs{
SpaceId: pulumi.String("my-space"),
Key: pulumi.String("example_key"),
Value: pulumi.String("example_value"),
Description: pulumi.String("Example description in a named space"),
Tags: pulumi.StringArray{
pulumi.String("tag-a"),
pulumi.String("tag-b"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Elasticstack = Pulumi.Elasticstack;
return await Deployment.RunAsync(() =>
{
var example = new Elasticstack.KibanaSyntheticsParameter("example", new()
{
SpaceId = "my-space",
Key = "example_key",
Value = "example_value",
Description = "Example description in a named space",
Tags = new[]
{
"tag-a",
"tag-b",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.elasticstack.KibanaSyntheticsParameter;
import com.pulumi.elasticstack.KibanaSyntheticsParameterArgs;
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 KibanaSyntheticsParameter("example", KibanaSyntheticsParameterArgs.builder()
.spaceId("my-space")
.key("example_key")
.value("example_value")
.description("Example description in a named space")
.tags(
"tag-a",
"tag-b")
.build());
}
}
resources:
example:
type: elasticstack:KibanaSyntheticsParameter
properties:
spaceId: my-space
key: example_key
value: example_value
description: Example description in a named space
tags:
- tag-a
- tag-b
Example coming soon!
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as elasticstack from "@pulumi/elasticstack";
const example = new elasticstack.KibanaSyntheticsParameter("example", {
key: "example_key",
value: "example_value",
description: "Example description",
tags: [
"tag-a",
"tag-b",
],
});
import pulumi
import pulumi_elasticstack as elasticstack
example = elasticstack.KibanaSyntheticsParameter("example",
key="example_key",
value="example_value",
description="Example description",
tags=[
"tag-a",
"tag-b",
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/elasticstack/elasticstack"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticstack.NewKibanaSyntheticsParameter(ctx, "example", &elasticstack.KibanaSyntheticsParameterArgs{
Key: pulumi.String("example_key"),
Value: pulumi.String("example_value"),
Description: pulumi.String("Example description"),
Tags: pulumi.StringArray{
pulumi.String("tag-a"),
pulumi.String("tag-b"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Elasticstack = Pulumi.Elasticstack;
return await Deployment.RunAsync(() =>
{
var example = new Elasticstack.KibanaSyntheticsParameter("example", new()
{
Key = "example_key",
Value = "example_value",
Description = "Example description",
Tags = new[]
{
"tag-a",
"tag-b",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.elasticstack.KibanaSyntheticsParameter;
import com.pulumi.elasticstack.KibanaSyntheticsParameterArgs;
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 KibanaSyntheticsParameter("example", KibanaSyntheticsParameterArgs.builder()
.key("example_key")
.value("example_value")
.description("Example description")
.tags(
"tag-a",
"tag-b")
.build());
}
}
resources:
example:
type: elasticstack:KibanaSyntheticsParameter
properties:
key: example_key
value: example_value
description: Example description
tags:
- tag-a
- tag-b
Example coming soon!
Create KibanaSyntheticsParameter Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KibanaSyntheticsParameter(name: string, args: KibanaSyntheticsParameterArgs, opts?: CustomResourceOptions);@overload
def KibanaSyntheticsParameter(resource_name: str,
args: KibanaSyntheticsParameterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KibanaSyntheticsParameter(resource_name: str,
opts: Optional[ResourceOptions] = None,
key: Optional[str] = None,
value: Optional[str] = None,
description: Optional[str] = None,
kibana_connections: Optional[Sequence[KibanaSyntheticsParameterKibanaConnectionArgs]] = None,
share_across_spaces: Optional[bool] = None,
space_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[KibanaSyntheticsParameterTimeoutsArgs] = None)func NewKibanaSyntheticsParameter(ctx *Context, name string, args KibanaSyntheticsParameterArgs, opts ...ResourceOption) (*KibanaSyntheticsParameter, error)public KibanaSyntheticsParameter(string name, KibanaSyntheticsParameterArgs args, CustomResourceOptions? opts = null)
public KibanaSyntheticsParameter(String name, KibanaSyntheticsParameterArgs args)
public KibanaSyntheticsParameter(String name, KibanaSyntheticsParameterArgs args, CustomResourceOptions options)
type: elasticstack:KibanaSyntheticsParameter
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "elasticstack_kibana_synthetics_parameter" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args KibanaSyntheticsParameterArgs
- 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 KibanaSyntheticsParameterArgs
- 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 KibanaSyntheticsParameterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KibanaSyntheticsParameterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KibanaSyntheticsParameterArgs
- 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 kibanaSyntheticsParameterResource = new Elasticstack.KibanaSyntheticsParameter("kibanaSyntheticsParameterResource", new()
{
Key = "string",
Value = "string",
Description = "string",
KibanaConnections = new[]
{
new Elasticstack.Inputs.KibanaSyntheticsParameterKibanaConnectionArgs
{
ApiKey = "string",
BearerToken = "string",
CaCerts = new[]
{
"string",
},
Endpoints = new[]
{
"string",
},
Insecure = false,
Password = "string",
Username = "string",
},
},
ShareAcrossSpaces = false,
SpaceId = "string",
Tags = new[]
{
"string",
},
Timeouts = new Elasticstack.Inputs.KibanaSyntheticsParameterTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := elasticstack.NewKibanaSyntheticsParameter(ctx, "kibanaSyntheticsParameterResource", &elasticstack.KibanaSyntheticsParameterArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Description: pulumi.String("string"),
KibanaConnections: elasticstack.KibanaSyntheticsParameterKibanaConnectionArray{
&elasticstack.KibanaSyntheticsParameterKibanaConnectionArgs{
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"),
},
},
ShareAcrossSpaces: pulumi.Bool(false),
SpaceId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &elasticstack.KibanaSyntheticsParameterTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "elasticstack_kibana_synthetics_parameter" "kibanaSyntheticsParameterResource" {
lifecycle {
create_before_destroy = true
}
key = "string"
value = "string"
description = "string"
kibana_connections {
api_key = "string"
bearer_token = "string"
ca_certs = ["string"]
endpoints = ["string"]
insecure = false
password = "string"
username = "string"
}
share_across_spaces = false
space_id = "string"
tags = ["string"]
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var kibanaSyntheticsParameterResource = new KibanaSyntheticsParameter("kibanaSyntheticsParameterResource", KibanaSyntheticsParameterArgs.builder()
.key("string")
.value("string")
.description("string")
.kibanaConnections(KibanaSyntheticsParameterKibanaConnectionArgs.builder()
.apiKey("string")
.bearerToken("string")
.caCerts("string")
.endpoints("string")
.insecure(false)
.password("string")
.username("string")
.build())
.shareAcrossSpaces(false)
.spaceId("string")
.tags("string")
.timeouts(KibanaSyntheticsParameterTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
kibana_synthetics_parameter_resource = elasticstack.KibanaSyntheticsParameter("kibanaSyntheticsParameterResource",
key="string",
value="string",
description="string",
kibana_connections=[{
"api_key": "string",
"bearer_token": "string",
"ca_certs": ["string"],
"endpoints": ["string"],
"insecure": False,
"password": "string",
"username": "string",
}],
share_across_spaces=False,
space_id="string",
tags=["string"],
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const kibanaSyntheticsParameterResource = new elasticstack.KibanaSyntheticsParameter("kibanaSyntheticsParameterResource", {
key: "string",
value: "string",
description: "string",
kibanaConnections: [{
apiKey: "string",
bearerToken: "string",
caCerts: ["string"],
endpoints: ["string"],
insecure: false,
password: "string",
username: "string",
}],
shareAcrossSpaces: false,
spaceId: "string",
tags: ["string"],
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: elasticstack:KibanaSyntheticsParameter
properties:
description: string
key: string
kibanaConnections:
- apiKey: string
bearerToken: string
caCerts:
- string
endpoints:
- string
insecure: false
password: string
username: string
shareAcrossSpaces: false
spaceId: string
tags:
- string
timeouts:
create: string
delete: string
read: string
update: string
value: string
KibanaSyntheticsParameter 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 KibanaSyntheticsParameter resource accepts the following input properties:
- Key string
- The key of the parameter.
- Value string
- The value associated with the parameter.
- Description string
- A description of the parameter.
- Kibana
Connections List<KibanaSynthetics Parameter Kibana Connection> - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- List<string>
- An array of tags to categorize the parameter.
- Timeouts
Kibana
Synthetics Parameter Timeouts
- Key string
- The key of the parameter.
- Value string
- The value associated with the parameter.
- Description string
- A description of the parameter.
- Kibana
Connections []KibanaSynthetics Parameter Kibana Connection Args - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- []string
- An array of tags to categorize the parameter.
- Timeouts
Kibana
Synthetics Parameter Timeouts Args
- key string
- The key of the parameter.
- value string
- The value associated with the parameter.
- description string
- A description of the parameter.
- kibana_
connections list(object) - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- space_
id string - An identifier for the space. If space_id is not provided, the default space is used.
- list(string)
- An array of tags to categorize the parameter.
- timeouts object
- key String
- The key of the parameter.
- value String
- The value associated with the parameter.
- description String
- A description of the parameter.
- kibana
Connections List<KibanaSynthetics Parameter Kibana Connection> - Kibana connection configuration block.
- Boolean
- Whether the parameter should be shared across spaces.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- List<String>
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts
- key string
- The key of the parameter.
- value string
- The value associated with the parameter.
- description string
- A description of the parameter.
- kibana
Connections KibanaSynthetics Parameter Kibana Connection[] - Kibana connection configuration block.
- boolean
- Whether the parameter should be shared across spaces.
- space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- string[]
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts
- key str
- The key of the parameter.
- value str
- The value associated with the parameter.
- description str
- A description of the parameter.
- kibana_
connections Sequence[KibanaSynthetics Parameter Kibana Connection Args] - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- space_
id str - An identifier for the space. If space_id is not provided, the default space is used.
- Sequence[str]
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts Args
- key String
- The key of the parameter.
- value String
- The value associated with the parameter.
- description String
- A description of the parameter.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- Boolean
- Whether the parameter should be shared across spaces.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- List<String>
- An array of tags to categorize the parameter.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the KibanaSyntheticsParameter 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 KibanaSyntheticsParameter Resource
Get an existing KibanaSyntheticsParameter 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?: KibanaSyntheticsParameterState, opts?: CustomResourceOptions): KibanaSyntheticsParameter@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
key: Optional[str] = None,
kibana_connections: Optional[Sequence[KibanaSyntheticsParameterKibanaConnectionArgs]] = None,
share_across_spaces: Optional[bool] = None,
space_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[KibanaSyntheticsParameterTimeoutsArgs] = None,
value: Optional[str] = None) -> KibanaSyntheticsParameterfunc GetKibanaSyntheticsParameter(ctx *Context, name string, id IDInput, state *KibanaSyntheticsParameterState, opts ...ResourceOption) (*KibanaSyntheticsParameter, error)public static KibanaSyntheticsParameter Get(string name, Input<string> id, KibanaSyntheticsParameterState? state, CustomResourceOptions? opts = null)public static KibanaSyntheticsParameter get(String name, Output<String> id, KibanaSyntheticsParameterState state, CustomResourceOptions options)resources: _: type: elasticstack:KibanaSyntheticsParameter get: id: ${id}import {
to = elasticstack_kibana_synthetics_parameter.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.
- Description string
- A description of the parameter.
- Key string
- The key of the parameter.
- Kibana
Connections List<KibanaSynthetics Parameter Kibana Connection> - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- List<string>
- An array of tags to categorize the parameter.
- Timeouts
Kibana
Synthetics Parameter Timeouts - Value string
- The value associated with the parameter.
- Description string
- A description of the parameter.
- Key string
- The key of the parameter.
- Kibana
Connections []KibanaSynthetics Parameter Kibana Connection Args - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- Space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- []string
- An array of tags to categorize the parameter.
- Timeouts
Kibana
Synthetics Parameter Timeouts Args - Value string
- The value associated with the parameter.
- description string
- A description of the parameter.
- key string
- The key of the parameter.
- kibana_
connections list(object) - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- space_
id string - An identifier for the space. If space_id is not provided, the default space is used.
- list(string)
- An array of tags to categorize the parameter.
- timeouts object
- value string
- The value associated with the parameter.
- description String
- A description of the parameter.
- key String
- The key of the parameter.
- kibana
Connections List<KibanaSynthetics Parameter Kibana Connection> - Kibana connection configuration block.
- Boolean
- Whether the parameter should be shared across spaces.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- List<String>
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts - value String
- The value associated with the parameter.
- description string
- A description of the parameter.
- key string
- The key of the parameter.
- kibana
Connections KibanaSynthetics Parameter Kibana Connection[] - Kibana connection configuration block.
- boolean
- Whether the parameter should be shared across spaces.
- space
Id string - An identifier for the space. If space_id is not provided, the default space is used.
- string[]
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts - value string
- The value associated with the parameter.
- description str
- A description of the parameter.
- key str
- The key of the parameter.
- kibana_
connections Sequence[KibanaSynthetics Parameter Kibana Connection Args] - Kibana connection configuration block.
- bool
- Whether the parameter should be shared across spaces.
- space_
id str - An identifier for the space. If space_id is not provided, the default space is used.
- Sequence[str]
- An array of tags to categorize the parameter.
- timeouts
Kibana
Synthetics Parameter Timeouts Args - value str
- The value associated with the parameter.
- description String
- A description of the parameter.
- key String
- The key of the parameter.
- kibana
Connections List<Property Map> - Kibana connection configuration block.
- Boolean
- Whether the parameter should be shared across spaces.
- space
Id String - An identifier for the space. If space_id is not provided, the default space is used.
- List<String>
- An array of tags to categorize the parameter.
- timeouts Property Map
- value String
- The value associated with the parameter.
Supporting Types
KibanaSyntheticsParameterKibanaConnection, KibanaSyntheticsParameterKibanaConnectionArgs
- 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.
KibanaSyntheticsParameterTimeouts, KibanaSyntheticsParameterTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- read String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
The pulumi import command can be used, for example:
Import using a bare parameter UUID (default space; state id becomes default/<parameter_uuid>)
$ pulumi import elasticstack:index/kibanaSyntheticsParameter:KibanaSyntheticsParameter my_param <parameter_uuid>
Or using the composite <space_id>/<parameter_uuid> form
$ pulumi import elasticstack:index/kibanaSyntheticsParameter:KibanaSyntheticsParameter my_param <space_id>/<parameter_uuid>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- elasticstack elastic/terraform-provider-elasticstack
- License
- Notes
- This Pulumi package is based on the
elasticstackTerraform Provider.
published on Sunday, Sep 13, 2026 by elastic