alicloud.arms.IntegrationExporter
Explore with Pulumi AI
Provides a Application Real-Time Monitoring Service (ARMS) Integration Exporter resource.
For information about Application Real-Time Monitoring Service (ARMS) Integration Exporter and how to use it, see What is Integration Exporter.
NOTE: Available since v1.203.0.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "tf_example";
var defaultZones = AliCloud.GetZones.Invoke(new()
{
AvailableResourceCreation = "VSwitch",
});
var defaultNetwork = new AliCloud.Vpc.Network("defaultNetwork", new()
{
VpcName = name,
CidrBlock = "10.4.0.0/16",
});
var defaultSwitch = new AliCloud.Vpc.Switch("defaultSwitch", new()
{
VswitchName = name,
CidrBlock = "10.4.0.0/24",
VpcId = defaultNetwork.Id,
ZoneId = Output.Tuple(defaultZones, defaultZones.Apply(getZonesResult => getZonesResult.Zones).Length).Apply(values =>
{
var defaultZones = values.Item1;
var length = values.Item2;
return defaultZones.Apply(getZonesResult => getZonesResult.Zones)[length - 1].Id;
}),
});
var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("defaultSecurityGroup", new()
{
VpcId = defaultNetwork.Id,
});
var defaultResourceGroups = AliCloud.ResourceManager.GetResourceGroups.Invoke();
var defaultPrometheus = new AliCloud.Arms.Prometheus("defaultPrometheus", new()
{
ClusterType = "ecs",
GrafanaInstanceId = "free",
VpcId = defaultNetwork.Id,
VswitchId = defaultSwitch.Id,
SecurityGroupId = defaultSecurityGroup.Id,
ClusterName = defaultNetwork.Id.Apply(id => $"{name}-{id}"),
ResourceGroupId = defaultResourceGroups.Apply(getResourceGroupsResult => getResourceGroupsResult.Groups[0]?.Id),
Tags =
{
{ "Created", "TF" },
{ "For", "Prometheus" },
},
});
var defaultIntegrationExporter = new AliCloud.Arms.IntegrationExporter("defaultIntegrationExporter", new()
{
ClusterId = defaultPrometheus.Id,
IntegrationType = "kafka",
Param = "{\"tls_insecure-skip-tls-verify\":\"none=tls.insecure-skip-tls-verify\",\"tls_enabled\":\"none=tls.enabled\",\"sasl_mechanism\":\"\",\"name\":\"kafka1\",\"sasl_enabled\":\"none=sasl.enabled\",\"ip_ports\":\"abc:888\",\"scrape_interval\":30,\"version\":\"0.10.1.0\"}",
});
});
package main
import (
"fmt"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/arms"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tf_example"
if param := cfg.Get("name"); param != "" {
name = param
}
defaultZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableResourceCreation: pulumi.StringRef("VSwitch"),
}, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "defaultNetwork", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "defaultSwitch", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
CidrBlock: pulumi.String("10.4.0.0/24"),
VpcId: defaultNetwork.ID(),
ZoneId: defaultZones.Zones[len(defaultZones.Zones)-1].Id,
})
if err != nil {
return err
}
defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "defaultSecurityGroup", &ecs.SecurityGroupArgs{
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
defaultResourceGroups, err := resourcemanager.GetResourceGroups(ctx, nil, nil)
if err != nil {
return err
}
defaultPrometheus, err := arms.NewPrometheus(ctx, "defaultPrometheus", &arms.PrometheusArgs{
ClusterType: pulumi.String("ecs"),
GrafanaInstanceId: pulumi.String("free"),
VpcId: defaultNetwork.ID(),
VswitchId: defaultSwitch.ID(),
SecurityGroupId: defaultSecurityGroup.ID(),
ClusterName: defaultNetwork.ID().ApplyT(func(id string) (string, error) {
return fmt.Sprintf("%v-%v", name, id), nil
}).(pulumi.StringOutput),
ResourceGroupId: *pulumi.String(defaultResourceGroups.Groups[0].Id),
Tags: pulumi.Map{
"Created": pulumi.Any("TF"),
"For": pulumi.Any("Prometheus"),
},
})
if err != nil {
return err
}
_, err = arms.NewIntegrationExporter(ctx, "defaultIntegrationExporter", &arms.IntegrationExporterArgs{
ClusterId: defaultPrometheus.ID(),
IntegrationType: pulumi.String("kafka"),
Param: pulumi.String("{\"tls_insecure-skip-tls-verify\":\"none=tls.insecure-skip-tls-verify\",\"tls_enabled\":\"none=tls.enabled\",\"sasl_mechanism\":\"\",\"name\":\"kafka1\",\"sasl_enabled\":\"none=sasl.enabled\",\"ip_ports\":\"abc:888\",\"scrape_interval\":30,\"version\":\"0.10.1.0\"}"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.arms.Prometheus;
import com.pulumi.alicloud.arms.PrometheusArgs;
import com.pulumi.alicloud.arms.IntegrationExporter;
import com.pulumi.alicloud.arms.IntegrationExporterArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("tf_example");
final var defaultZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
.availableResourceCreation("VSwitch")
.build());
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName(name)
.cidrBlock("10.4.0.0/16")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vswitchName(name)
.cidrBlock("10.4.0.0/24")
.vpcId(defaultNetwork.id())
.zoneId(defaultZones.applyValue(getZonesResult -> getZonesResult.zones())[defaultZones.applyValue(getZonesResult -> getZonesResult.zones()).length() - 1].id())
.build());
var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
.vpcId(defaultNetwork.id())
.build());
final var defaultResourceGroups = ResourcemanagerFunctions.getResourceGroups();
var defaultPrometheus = new Prometheus("defaultPrometheus", PrometheusArgs.builder()
.clusterType("ecs")
.grafanaInstanceId("free")
.vpcId(defaultNetwork.id())
.vswitchId(defaultSwitch.id())
.securityGroupId(defaultSecurityGroup.id())
.clusterName(defaultNetwork.id().applyValue(id -> String.format("%s-%s", name,id)))
.resourceGroupId(defaultResourceGroups.applyValue(getResourceGroupsResult -> getResourceGroupsResult.groups()[0].id()))
.tags(Map.ofEntries(
Map.entry("Created", "TF"),
Map.entry("For", "Prometheus")
))
.build());
var defaultIntegrationExporter = new IntegrationExporter("defaultIntegrationExporter", IntegrationExporterArgs.builder()
.clusterId(defaultPrometheus.id())
.integrationType("kafka")
.param("{\"tls_insecure-skip-tls-verify\":\"none=tls.insecure-skip-tls-verify\",\"tls_enabled\":\"none=tls.enabled\",\"sasl_mechanism\":\"\",\"name\":\"kafka1\",\"sasl_enabled\":\"none=sasl.enabled\",\"ip_ports\":\"abc:888\",\"scrape_interval\":30,\"version\":\"0.10.1.0\"}")
.build());
}
}
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "tf_example"
default_zones = alicloud.get_zones(available_resource_creation="VSwitch")
default_network = alicloud.vpc.Network("defaultNetwork",
vpc_name=name,
cidr_block="10.4.0.0/16")
default_switch = alicloud.vpc.Switch("defaultSwitch",
vswitch_name=name,
cidr_block="10.4.0.0/24",
vpc_id=default_network.id,
zone_id=default_zones.zones[len(default_zones.zones) - 1].id)
default_security_group = alicloud.ecs.SecurityGroup("defaultSecurityGroup", vpc_id=default_network.id)
default_resource_groups = alicloud.resourcemanager.get_resource_groups()
default_prometheus = alicloud.arms.Prometheus("defaultPrometheus",
cluster_type="ecs",
grafana_instance_id="free",
vpc_id=default_network.id,
vswitch_id=default_switch.id,
security_group_id=default_security_group.id,
cluster_name=default_network.id.apply(lambda id: f"{name}-{id}"),
resource_group_id=default_resource_groups.groups[0].id,
tags={
"Created": "TF",
"For": "Prometheus",
})
default_integration_exporter = alicloud.arms.IntegrationExporter("defaultIntegrationExporter",
cluster_id=default_prometheus.id,
integration_type="kafka",
param="{\"tls_insecure-skip-tls-verify\":\"none=tls.insecure-skip-tls-verify\",\"tls_enabled\":\"none=tls.enabled\",\"sasl_mechanism\":\"\",\"name\":\"kafka1\",\"sasl_enabled\":\"none=sasl.enabled\",\"ip_ports\":\"abc:888\",\"scrape_interval\":30,\"version\":\"0.10.1.0\"}")
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tf_example";
const defaultZones = alicloud.getZones({
availableResourceCreation: "VSwitch",
});
const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
vpcName: name,
cidrBlock: "10.4.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
vswitchName: name,
cidrBlock: "10.4.0.0/24",
vpcId: defaultNetwork.id,
zoneId: Promise.all([defaultZones, defaultZones.then(defaultZones => defaultZones.zones).length]).then(([defaultZones, length]) => defaultZones.zones[length - 1].id),
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("defaultSecurityGroup", {vpcId: defaultNetwork.id});
const defaultResourceGroups = alicloud.resourcemanager.getResourceGroups({});
const defaultPrometheus = new alicloud.arms.Prometheus("defaultPrometheus", {
clusterType: "ecs",
grafanaInstanceId: "free",
vpcId: defaultNetwork.id,
vswitchId: defaultSwitch.id,
securityGroupId: defaultSecurityGroup.id,
clusterName: pulumi.interpolate`${name}-${defaultNetwork.id}`,
resourceGroupId: defaultResourceGroups.then(defaultResourceGroups => defaultResourceGroups.groups?.[0]?.id),
tags: {
Created: "TF",
For: "Prometheus",
},
});
const defaultIntegrationExporter = new alicloud.arms.IntegrationExporter("defaultIntegrationExporter", {
clusterId: defaultPrometheus.id,
integrationType: "kafka",
param: "{\"tls_insecure-skip-tls-verify\":\"none=tls.insecure-skip-tls-verify\",\"tls_enabled\":\"none=tls.enabled\",\"sasl_mechanism\":\"\",\"name\":\"kafka1\",\"sasl_enabled\":\"none=sasl.enabled\",\"ip_ports\":\"abc:888\",\"scrape_interval\":30,\"version\":\"0.10.1.0\"}",
});
Coming soon!
Create IntegrationExporter Resource
new IntegrationExporter(name: string, args: IntegrationExporterArgs, opts?: CustomResourceOptions);
@overload
def IntegrationExporter(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
integration_type: Optional[str] = None,
param: Optional[str] = None)
@overload
def IntegrationExporter(resource_name: str,
args: IntegrationExporterArgs,
opts: Optional[ResourceOptions] = None)
func NewIntegrationExporter(ctx *Context, name string, args IntegrationExporterArgs, opts ...ResourceOption) (*IntegrationExporter, error)
public IntegrationExporter(string name, IntegrationExporterArgs args, CustomResourceOptions? opts = null)
public IntegrationExporter(String name, IntegrationExporterArgs args)
public IntegrationExporter(String name, IntegrationExporterArgs args, CustomResourceOptions options)
type: alicloud:arms:IntegrationExporter
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationExporterArgs
- 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 IntegrationExporterArgs
- 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 IntegrationExporterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationExporterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationExporterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
IntegrationExporter Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The IntegrationExporter resource accepts the following input properties:
- Cluster
Id string The ID of the Prometheus instance.
- Integration
Type string The type of prometheus integration.
- Param string
Exporter configuration parameter json string.
- Cluster
Id string The ID of the Prometheus instance.
- Integration
Type string The type of prometheus integration.
- Param string
Exporter configuration parameter json string.
- cluster
Id String The ID of the Prometheus instance.
- integration
Type String The type of prometheus integration.
- param String
Exporter configuration parameter json string.
- cluster
Id string The ID of the Prometheus instance.
- integration
Type string The type of prometheus integration.
- param string
Exporter configuration parameter json string.
- cluster_
id str The ID of the Prometheus instance.
- integration_
type str The type of prometheus integration.
- param str
Exporter configuration parameter json string.
- cluster
Id String The ID of the Prometheus instance.
- integration
Type String The type of prometheus integration.
- param String
Exporter configuration parameter json string.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationExporter resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Instance
Id int The ID of the Integration Exporter instance.
- Id string
The provider-assigned unique ID for this managed resource.
- Instance
Id int The ID of the Integration Exporter instance.
- id String
The provider-assigned unique ID for this managed resource.
- instance
Id Integer The ID of the Integration Exporter instance.
- id string
The provider-assigned unique ID for this managed resource.
- instance
Id number The ID of the Integration Exporter instance.
- id str
The provider-assigned unique ID for this managed resource.
- instance_
id int The ID of the Integration Exporter instance.
- id String
The provider-assigned unique ID for this managed resource.
- instance
Id Number The ID of the Integration Exporter instance.
Look up Existing IntegrationExporter Resource
Get an existing IntegrationExporter 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?: IntegrationExporterState, opts?: CustomResourceOptions): IntegrationExporter
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
instance_id: Optional[int] = None,
integration_type: Optional[str] = None,
param: Optional[str] = None) -> IntegrationExporter
func GetIntegrationExporter(ctx *Context, name string, id IDInput, state *IntegrationExporterState, opts ...ResourceOption) (*IntegrationExporter, error)
public static IntegrationExporter Get(string name, Input<string> id, IntegrationExporterState? state, CustomResourceOptions? opts = null)
public static IntegrationExporter get(String name, Output<String> id, IntegrationExporterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Cluster
Id string The ID of the Prometheus instance.
- Instance
Id int The ID of the Integration Exporter instance.
- Integration
Type string The type of prometheus integration.
- Param string
Exporter configuration parameter json string.
- Cluster
Id string The ID of the Prometheus instance.
- Instance
Id int The ID of the Integration Exporter instance.
- Integration
Type string The type of prometheus integration.
- Param string
Exporter configuration parameter json string.
- cluster
Id String The ID of the Prometheus instance.
- instance
Id Integer The ID of the Integration Exporter instance.
- integration
Type String The type of prometheus integration.
- param String
Exporter configuration parameter json string.
- cluster
Id string The ID of the Prometheus instance.
- instance
Id number The ID of the Integration Exporter instance.
- integration
Type string The type of prometheus integration.
- param string
Exporter configuration parameter json string.
- cluster_
id str The ID of the Prometheus instance.
- instance_
id int The ID of the Integration Exporter instance.
- integration_
type str The type of prometheus integration.
- param str
Exporter configuration parameter json string.
- cluster
Id String The ID of the Prometheus instance.
- instance
Id Number The ID of the Integration Exporter instance.
- integration
Type String The type of prometheus integration.
- param String
Exporter configuration parameter json string.
Import
Application Real-Time Monitoring Service (ARMS) Integration Exporter can be imported using the id, e.g.
$ pulumi import alicloud:arms/integrationExporter:IntegrationExporter example <cluster_id>:<integration_type>:<instance_id>
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.