ionoscloud.MonitoringPipeline
Explore with Pulumi AI
Manages a Monitoring pipeline.
⚠️ Only tokens are accepted for authorization in the monitoring_pipeline resource. Please ensure you are using tokens as other methods will not be valid.
Usage example
import * as pulumi from "@pulumi/pulumi";
import * as ionoscloud from "@pulumi/ionoscloud";
const example = new ionoscloud.MonitoringPipeline("example", {location: "es/vit"});
import pulumi
import pulumi_ionoscloud as ionoscloud
example = ionoscloud.MonitoringPipeline("example", location="es/vit")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ionoscloud/v6/ionoscloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ionoscloud.NewMonitoringPipeline(ctx, "example", &ionoscloud.MonitoringPipelineArgs{
Location: pulumi.String("es/vit"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ionoscloud = Pulumi.Ionoscloud;
return await Deployment.RunAsync(() =>
{
var example = new Ionoscloud.MonitoringPipeline("example", new()
{
Location = "es/vit",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.MonitoringPipeline;
import com.pulumi.ionoscloud.MonitoringPipelineArgs;
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 MonitoringPipeline("example", MonitoringPipelineArgs.builder()
.location("es/vit")
.build());
}
}
resources:
example:
type: ionoscloud:MonitoringPipeline
properties:
location: es/vit
NOTE: The default timeout for all operations is 60 minutes. If you want to change the default value, you can use timeouts
attribute inside the resource:
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ionoscloud.MonitoringPipeline;
import com.pulumi.ionoscloud.MonitoringPipelineArgs;
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 MonitoringPipeline("example", MonitoringPipelineArgs.builder()
.location("es/vit")
.timeouts(MonitoringPipelineTimeoutsArgs.builder()
.create("20m")
.read("30s")
.update("10m")
.delete("10m")
.build())
.build());
}
}
resources:
example:
type: ionoscloud:MonitoringPipeline
properties:
location: es/vit
timeouts:
- create: 20m
read: 30s
update: 10m
delete: 10m
Create MonitoringPipeline Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MonitoringPipeline(name: string, args?: MonitoringPipelineArgs, opts?: CustomResourceOptions);
@overload
def MonitoringPipeline(resource_name: str,
args: Optional[MonitoringPipelineArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def MonitoringPipeline(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[MonitoringPipelineTimeoutsArgs] = None)
func NewMonitoringPipeline(ctx *Context, name string, args *MonitoringPipelineArgs, opts ...ResourceOption) (*MonitoringPipeline, error)
public MonitoringPipeline(string name, MonitoringPipelineArgs? args = null, CustomResourceOptions? opts = null)
public MonitoringPipeline(String name, MonitoringPipelineArgs args)
public MonitoringPipeline(String name, MonitoringPipelineArgs args, CustomResourceOptions options)
type: ionoscloud:MonitoringPipeline
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 MonitoringPipelineArgs
- 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 MonitoringPipelineArgs
- 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 MonitoringPipelineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MonitoringPipelineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MonitoringPipelineArgs
- 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 monitoringPipelineResource = new Ionoscloud.MonitoringPipeline("monitoringPipelineResource", new()
{
Location = "string",
Name = "string",
Timeouts = new Ionoscloud.Inputs.MonitoringPipelineTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := ionoscloud.NewMonitoringPipeline(ctx, "monitoringPipelineResource", &ionoscloud.MonitoringPipelineArgs{
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &ionoscloud.MonitoringPipelineTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var monitoringPipelineResource = new MonitoringPipeline("monitoringPipelineResource", MonitoringPipelineArgs.builder()
.location("string")
.name("string")
.timeouts(MonitoringPipelineTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
monitoring_pipeline_resource = ionoscloud.MonitoringPipeline("monitoringPipelineResource",
location="string",
name="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const monitoringPipelineResource = new ionoscloud.MonitoringPipeline("monitoringPipelineResource", {
location: "string",
name: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: ionoscloud:MonitoringPipeline
properties:
location: string
name: string
timeouts:
create: string
delete: string
read: string
update: string
MonitoringPipeline 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 MonitoringPipeline resource accepts the following input properties:
- Location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - Name string
- [string] The name of the Monitoring pipeline.
- Timeouts
Monitoring
Pipeline Timeouts
- Location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - Name string
- [string] The name of the Monitoring pipeline.
- Timeouts
Monitoring
Pipeline Timeouts Args
- location String
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name String
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts
- location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name string
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts
- location str
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name str
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts Args
- location String
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name String
- [string] The name of the Monitoring pipeline.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the MonitoringPipeline resource produces the following output properties:
- Grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- Http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
- Grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- Http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
- grafana
Endpoint String - [string] The endpoint of the Grafana instance.
- http
Endpoint String - [string] The HTTP endpoint of the monitoring instance.
- id String
- The provider-assigned unique ID for this managed resource.
- key String
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
- grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- id string
- The provider-assigned unique ID for this managed resource.
- key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
- grafana_
endpoint str - [string] The endpoint of the Grafana instance.
- http_
endpoint str - [string] The HTTP endpoint of the monitoring instance.
- id str
- The provider-assigned unique ID for this managed resource.
- key str
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
- grafana
Endpoint String - [string] The endpoint of the Grafana instance.
- http
Endpoint String - [string] The HTTP endpoint of the monitoring instance.
- id String
- The provider-assigned unique ID for this managed resource.
- key String
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.
Look up Existing MonitoringPipeline Resource
Get an existing MonitoringPipeline 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?: MonitoringPipelineState, opts?: CustomResourceOptions): MonitoringPipeline
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
grafana_endpoint: Optional[str] = None,
http_endpoint: Optional[str] = None,
key: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[MonitoringPipelineTimeoutsArgs] = None) -> MonitoringPipeline
func GetMonitoringPipeline(ctx *Context, name string, id IDInput, state *MonitoringPipelineState, opts ...ResourceOption) (*MonitoringPipeline, error)
public static MonitoringPipeline Get(string name, Input<string> id, MonitoringPipelineState? state, CustomResourceOptions? opts = null)
public static MonitoringPipeline get(String name, Output<String> id, MonitoringPipelineState state, CustomResourceOptions options)
resources: _: type: ionoscloud:MonitoringPipeline 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.
- Grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- Http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- Key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- Location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - Name string
- [string] The name of the Monitoring pipeline.
- Timeouts
Monitoring
Pipeline Timeouts
- Grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- Http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- Key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- Location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - Name string
- [string] The name of the Monitoring pipeline.
- Timeouts
Monitoring
Pipeline Timeouts Args
- grafana
Endpoint String - [string] The endpoint of the Grafana instance.
- http
Endpoint String - [string] The HTTP endpoint of the monitoring instance.
- key String
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- location String
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name String
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts
- grafana
Endpoint string - [string] The endpoint of the Grafana instance.
- http
Endpoint string - [string] The HTTP endpoint of the monitoring instance.
- key string
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- location string
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name string
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts
- grafana_
endpoint str - [string] The endpoint of the Grafana instance.
- http_
endpoint str - [string] The HTTP endpoint of the monitoring instance.
- key str
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- location str
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name str
- [string] The name of the Monitoring pipeline.
- timeouts
Monitoring
Pipeline Timeouts Args
- grafana
Endpoint String - [string] The endpoint of the Grafana instance.
- http
Endpoint String - [string] The HTTP endpoint of the monitoring instance.
- key String
(Sensitive)[string] The key used to connect to the monitoring pipeline.
⚠ NOTE:
IONOS_API_URL_MONITORING
can be used to set a custom API URL for the resource.location
field needs to be empty, otherwise it will override the custom API URL.- location String
- [string] The location of the Monitoring pipeline. Default is
de/fra
. It can be one ofde/fra
,de/txl
,gb/lhr
,es/vit
,fr/par
. If this is not set and if no value is provided for theIONOS_API_URL_MONITORING
env var, the defaultlocation
will be:de/fra
. - name String
- [string] The name of the Monitoring pipeline.
- timeouts Property Map
Supporting Types
MonitoringPipelineTimeouts, MonitoringPipelineTimeoutsArgs
- 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
In order to import a Monitoring pipeline, you can define an empty Monitoring pipeline resource in the plan:
hcl
resource “ionoscloud_monitoring_pipeline” “example” {
}
The resource can be imported using the location
and pipeline_id
, for example:
$ pulumi import ionoscloud:index/monitoringPipeline:MonitoringPipeline example location:pipeline_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ionoscloud ionos-cloud/terraform-provider-ionoscloud
- License
- Notes
- This Pulumi package is based on the
ionoscloud
Terraform Provider.