cyral.IntegrationElk
Explore with Pulumi AI
DEPRECATED Use resource
cyral.IntegrationLogging
instead.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cyral from "@pulumi/cyral";
const someResourceName = new cyral.IntegrationElk("someResourceName", {
esUrl: "",
kibanaUrl: "",
});
import pulumi
import pulumi_cyral as cyral
some_resource_name = cyral.IntegrationElk("someResourceName",
es_url="",
kibana_url="")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/cyral/v4/cyral"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cyral.NewIntegrationElk(ctx, "someResourceName", &cyral.IntegrationElkArgs{
EsUrl: pulumi.String(""),
KibanaUrl: pulumi.String(""),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cyral = Pulumi.Cyral;
return await Deployment.RunAsync(() =>
{
var someResourceName = new Cyral.IntegrationElk("someResourceName", new()
{
EsUrl = "",
KibanaUrl = "",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cyral.IntegrationElk;
import com.pulumi.cyral.IntegrationElkArgs;
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 someResourceName = new IntegrationElk("someResourceName", IntegrationElkArgs.builder()
.esUrl("")
.kibanaUrl("")
.build());
}
}
resources:
someResourceName:
type: cyral:IntegrationElk
properties:
esUrl: ""
kibanaUrl: ""
Create IntegrationElk Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationElk(name: string, args: IntegrationElkArgs, opts?: CustomResourceOptions);
@overload
def IntegrationElk(resource_name: str,
args: IntegrationElkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationElk(resource_name: str,
opts: Optional[ResourceOptions] = None,
es_url: Optional[str] = None,
kibana_url: Optional[str] = None,
name: Optional[str] = None)
func NewIntegrationElk(ctx *Context, name string, args IntegrationElkArgs, opts ...ResourceOption) (*IntegrationElk, error)
public IntegrationElk(string name, IntegrationElkArgs args, CustomResourceOptions? opts = null)
public IntegrationElk(String name, IntegrationElkArgs args)
public IntegrationElk(String name, IntegrationElkArgs args, CustomResourceOptions options)
type: cyral:IntegrationElk
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 IntegrationElkArgs
- 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 IntegrationElkArgs
- 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 IntegrationElkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationElkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationElkArgs
- 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 integrationElkResource = new Cyral.IntegrationElk("integrationElkResource", new()
{
EsUrl = "string",
KibanaUrl = "string",
Name = "string",
});
example, err := cyral.NewIntegrationElk(ctx, "integrationElkResource", &cyral.IntegrationElkArgs{
EsUrl: pulumi.String("string"),
KibanaUrl: pulumi.String("string"),
Name: pulumi.String("string"),
})
var integrationElkResource = new IntegrationElk("integrationElkResource", IntegrationElkArgs.builder()
.esUrl("string")
.kibanaUrl("string")
.name("string")
.build());
integration_elk_resource = cyral.IntegrationElk("integrationElkResource",
es_url="string",
kibana_url="string",
name="string")
const integrationElkResource = new cyral.IntegrationElk("integrationElkResource", {
esUrl: "string",
kibanaUrl: "string",
name: "string",
});
type: cyral:IntegrationElk
properties:
esUrl: string
kibanaUrl: string
name: string
IntegrationElk 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 IntegrationElk resource accepts the following input properties:
- es_
url str - Elastic Search URL.
- kibana_
url str - Kibana URL.
- name str
- Integration name that will be used internally in the control plane.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationElk 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 IntegrationElk Resource
Get an existing IntegrationElk 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?: IntegrationElkState, opts?: CustomResourceOptions): IntegrationElk
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
es_url: Optional[str] = None,
kibana_url: Optional[str] = None,
name: Optional[str] = None) -> IntegrationElk
func GetIntegrationElk(ctx *Context, name string, id IDInput, state *IntegrationElkState, opts ...ResourceOption) (*IntegrationElk, error)
public static IntegrationElk Get(string name, Input<string> id, IntegrationElkState? state, CustomResourceOptions? opts = null)
public static IntegrationElk get(String name, Output<String> id, IntegrationElkState state, CustomResourceOptions options)
resources: _: type: cyral:IntegrationElk 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.
- es_
url str - Elastic Search URL.
- kibana_
url str - Kibana URL.
- name str
- Integration name that will be used internally in the control plane.
Package Details
- Repository
- cyral cyralinc/terraform-provider-cyral
- License
- Notes
- This Pulumi package is based on the
cyral
Terraform Provider.