1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. MonitorTmpGrafanaConfig
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack

tencentcloud.MonitorTmpGrafanaConfig

Explore with Pulumi AI

Provides a resource to create a monitor tmp_grafana_config

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const config = new pulumi.Config();
const availabilityZone = config.get("availabilityZone") || "ap-guangzhou-4";
const vpc = new tencentcloud.Vpc("vpc", {cidrBlock: "10.0.0.0/16"});
const subnet = new tencentcloud.Subnet("subnet", {
    vpcId: vpc.vpcId,
    availabilityZone: availabilityZone,
    cidrBlock: "10.0.1.0/24",
});
const fooMonitorGrafanaInstance = new tencentcloud.MonitorGrafanaInstance("fooMonitorGrafanaInstance", {
    instanceName: "tf-grafana",
    vpcId: vpc.vpcId,
    subnetIds: [subnet.subnetId],
    grafanaInitPassword: "1234567890",
    enableInternet: false,
    isDestroy: true,
    tags: {
        createdBy: "test",
    },
});
const fooMonitorTmpGrafanaConfig = new tencentcloud.MonitorTmpGrafanaConfig("fooMonitorTmpGrafanaConfig", {
    config: JSON.stringify({
        server: {
            http_port: 8080,
            root_url: "https://cloud-grafana.woa.com/grafana-ffrdnrfa/",
            serve_from_sub_path: true,
        },
    }),
    instanceId: fooMonitorGrafanaInstance.monitorGrafanaInstanceId,
});
Copy
import pulumi
import json
import pulumi_tencentcloud as tencentcloud

config = pulumi.Config()
availability_zone = config.get("availabilityZone")
if availability_zone is None:
    availability_zone = "ap-guangzhou-4"
vpc = tencentcloud.Vpc("vpc", cidr_block="10.0.0.0/16")
subnet = tencentcloud.Subnet("subnet",
    vpc_id=vpc.vpc_id,
    availability_zone=availability_zone,
    cidr_block="10.0.1.0/24")
foo_monitor_grafana_instance = tencentcloud.MonitorGrafanaInstance("fooMonitorGrafanaInstance",
    instance_name="tf-grafana",
    vpc_id=vpc.vpc_id,
    subnet_ids=[subnet.subnet_id],
    grafana_init_password="1234567890",
    enable_internet=False,
    is_destroy=True,
    tags={
        "createdBy": "test",
    })
foo_monitor_tmp_grafana_config = tencentcloud.MonitorTmpGrafanaConfig("fooMonitorTmpGrafanaConfig",
    config=json.dumps({
        "server": {
            "http_port": 8080,
            "root_url": "https://cloud-grafana.woa.com/grafana-ffrdnrfa/",
            "serve_from_sub_path": True,
        },
    }),
    instance_id=foo_monitor_grafana_instance.monitor_grafana_instance_id)
Copy
package main

import (
	"encoding/json"

	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"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, "")
		availabilityZone := "ap-guangzhou-4"
		if param := cfg.Get("availabilityZone"); param != "" {
			availabilityZone = param
		}
		vpc, err := tencentcloud.NewVpc(ctx, "vpc", &tencentcloud.VpcArgs{
			CidrBlock: pulumi.String("10.0.0.0/16"),
		})
		if err != nil {
			return err
		}
		subnet, err := tencentcloud.NewSubnet(ctx, "subnet", &tencentcloud.SubnetArgs{
			VpcId:            vpc.VpcId,
			AvailabilityZone: pulumi.String(availabilityZone),
			CidrBlock:        pulumi.String("10.0.1.0/24"),
		})
		if err != nil {
			return err
		}
		fooMonitorGrafanaInstance, err := tencentcloud.NewMonitorGrafanaInstance(ctx, "fooMonitorGrafanaInstance", &tencentcloud.MonitorGrafanaInstanceArgs{
			InstanceName: pulumi.String("tf-grafana"),
			VpcId:        vpc.VpcId,
			SubnetIds: pulumi.StringArray{
				subnet.SubnetId,
			},
			GrafanaInitPassword: pulumi.String("1234567890"),
			EnableInternet:      pulumi.Bool(false),
			IsDestroy:           pulumi.Bool(true),
			Tags: pulumi.StringMap{
				"createdBy": pulumi.String("test"),
			},
		})
		if err != nil {
			return err
		}
		tmpJSON0, err := json.Marshal(map[string]interface{}{
			"server": map[string]interface{}{
				"http_port":           8080,
				"root_url":            "https://cloud-grafana.woa.com/grafana-ffrdnrfa/",
				"serve_from_sub_path": true,
			},
		})
		if err != nil {
			return err
		}
		json0 := string(tmpJSON0)
		_, err = tencentcloud.NewMonitorTmpGrafanaConfig(ctx, "fooMonitorTmpGrafanaConfig", &tencentcloud.MonitorTmpGrafanaConfigArgs{
			Config:     pulumi.String(json0),
			InstanceId: fooMonitorGrafanaInstance.MonitorGrafanaInstanceId,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var availabilityZone = config.Get("availabilityZone") ?? "ap-guangzhou-4";
    var vpc = new Tencentcloud.Vpc("vpc", new()
    {
        CidrBlock = "10.0.0.0/16",
    });

    var subnet = new Tencentcloud.Subnet("subnet", new()
    {
        VpcId = vpc.VpcId,
        AvailabilityZone = availabilityZone,
        CidrBlock = "10.0.1.0/24",
    });

    var fooMonitorGrafanaInstance = new Tencentcloud.MonitorGrafanaInstance("fooMonitorGrafanaInstance", new()
    {
        InstanceName = "tf-grafana",
        VpcId = vpc.VpcId,
        SubnetIds = new[]
        {
            subnet.SubnetId,
        },
        GrafanaInitPassword = "1234567890",
        EnableInternet = false,
        IsDestroy = true,
        Tags = 
        {
            { "createdBy", "test" },
        },
    });

    var fooMonitorTmpGrafanaConfig = new Tencentcloud.MonitorTmpGrafanaConfig("fooMonitorTmpGrafanaConfig", new()
    {
        Config = JsonSerializer.Serialize(new Dictionary<string, object?>
        {
            ["server"] = new Dictionary<string, object?>
            {
                ["http_port"] = 8080,
                ["root_url"] = "https://cloud-grafana.woa.com/grafana-ffrdnrfa/",
                ["serve_from_sub_path"] = true,
            },
        }),
        InstanceId = fooMonitorGrafanaInstance.MonitorGrafanaInstanceId,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.Vpc;
import com.pulumi.tencentcloud.VpcArgs;
import com.pulumi.tencentcloud.Subnet;
import com.pulumi.tencentcloud.SubnetArgs;
import com.pulumi.tencentcloud.MonitorGrafanaInstance;
import com.pulumi.tencentcloud.MonitorGrafanaInstanceArgs;
import com.pulumi.tencentcloud.MonitorTmpGrafanaConfig;
import com.pulumi.tencentcloud.MonitorTmpGrafanaConfigArgs;
import static com.pulumi.codegen.internal.Serialization.*;
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 availabilityZone = config.get("availabilityZone").orElse("ap-guangzhou-4");
        var vpc = new Vpc("vpc", VpcArgs.builder()
            .cidrBlock("10.0.0.0/16")
            .build());

        var subnet = new Subnet("subnet", SubnetArgs.builder()
            .vpcId(vpc.vpcId())
            .availabilityZone(availabilityZone)
            .cidrBlock("10.0.1.0/24")
            .build());

        var fooMonitorGrafanaInstance = new MonitorGrafanaInstance("fooMonitorGrafanaInstance", MonitorGrafanaInstanceArgs.builder()
            .instanceName("tf-grafana")
            .vpcId(vpc.vpcId())
            .subnetIds(subnet.subnetId())
            .grafanaInitPassword("1234567890")
            .enableInternet(false)
            .isDestroy(true)
            .tags(Map.of("createdBy", "test"))
            .build());

        var fooMonitorTmpGrafanaConfig = new MonitorTmpGrafanaConfig("fooMonitorTmpGrafanaConfig", MonitorTmpGrafanaConfigArgs.builder()
            .config(serializeJson(
                jsonObject(
                    jsonProperty("server", jsonObject(
                        jsonProperty("http_port", 8080),
                        jsonProperty("root_url", "https://cloud-grafana.woa.com/grafana-ffrdnrfa/"),
                        jsonProperty("serve_from_sub_path", true)
                    ))
                )))
            .instanceId(fooMonitorGrafanaInstance.monitorGrafanaInstanceId())
            .build());

    }
}
Copy
configuration:
  availabilityZone:
    type: string
    default: ap-guangzhou-4
resources:
  vpc:
    type: tencentcloud:Vpc
    properties:
      cidrBlock: 10.0.0.0/16
  subnet:
    type: tencentcloud:Subnet
    properties:
      vpcId: ${vpc.vpcId}
      availabilityZone: ${availabilityZone}
      cidrBlock: 10.0.1.0/24
  fooMonitorGrafanaInstance:
    type: tencentcloud:MonitorGrafanaInstance
    properties:
      instanceName: tf-grafana
      vpcId: ${vpc.vpcId}
      subnetIds:
        - ${subnet.subnetId}
      grafanaInitPassword: '1234567890'
      enableInternet: false
      isDestroy: true
      tags:
        createdBy: test
  fooMonitorTmpGrafanaConfig:
    type: tencentcloud:MonitorTmpGrafanaConfig
    properties:
      config:
        fn::toJSON:
          server:
            http_port: 8080
            root_url: https://cloud-grafana.woa.com/grafana-ffrdnrfa/
            serve_from_sub_path: true
      instanceId: ${fooMonitorGrafanaInstance.monitorGrafanaInstanceId}
Copy

Create MonitorTmpGrafanaConfig Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new MonitorTmpGrafanaConfig(name: string, args: MonitorTmpGrafanaConfigArgs, opts?: CustomResourceOptions);
@overload
def MonitorTmpGrafanaConfig(resource_name: str,
                            args: MonitorTmpGrafanaConfigArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def MonitorTmpGrafanaConfig(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            config: Optional[str] = None,
                            instance_id: Optional[str] = None,
                            monitor_tmp_grafana_config_id: Optional[str] = None)
func NewMonitorTmpGrafanaConfig(ctx *Context, name string, args MonitorTmpGrafanaConfigArgs, opts ...ResourceOption) (*MonitorTmpGrafanaConfig, error)
public MonitorTmpGrafanaConfig(string name, MonitorTmpGrafanaConfigArgs args, CustomResourceOptions? opts = null)
public MonitorTmpGrafanaConfig(String name, MonitorTmpGrafanaConfigArgs args)
public MonitorTmpGrafanaConfig(String name, MonitorTmpGrafanaConfigArgs args, CustomResourceOptions options)
type: tencentcloud:MonitorTmpGrafanaConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MonitorTmpGrafanaConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MonitorTmpGrafanaConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MonitorTmpGrafanaConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MonitorTmpGrafanaConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MonitorTmpGrafanaConfigArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

MonitorTmpGrafanaConfig 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 MonitorTmpGrafanaConfig resource accepts the following input properties:

Config This property is required. string
JSON encoded string.
InstanceId This property is required. string
Instance id.
MonitorTmpGrafanaConfigId string
ID of the resource.
Config This property is required. string
JSON encoded string.
InstanceId This property is required. string
Instance id.
MonitorTmpGrafanaConfigId string
ID of the resource.
config This property is required. String
JSON encoded string.
instanceId This property is required. String
Instance id.
monitorTmpGrafanaConfigId String
ID of the resource.
config This property is required. string
JSON encoded string.
instanceId This property is required. string
Instance id.
monitorTmpGrafanaConfigId string
ID of the resource.
config This property is required. str
JSON encoded string.
instance_id This property is required. str
Instance id.
monitor_tmp_grafana_config_id str
ID of the resource.
config This property is required. String
JSON encoded string.
instanceId This property is required. String
Instance id.
monitorTmpGrafanaConfigId String
ID of the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the MonitorTmpGrafanaConfig 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 MonitorTmpGrafanaConfig Resource

Get an existing MonitorTmpGrafanaConfig 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?: MonitorTmpGrafanaConfigState, opts?: CustomResourceOptions): MonitorTmpGrafanaConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        config: Optional[str] = None,
        instance_id: Optional[str] = None,
        monitor_tmp_grafana_config_id: Optional[str] = None) -> MonitorTmpGrafanaConfig
func GetMonitorTmpGrafanaConfig(ctx *Context, name string, id IDInput, state *MonitorTmpGrafanaConfigState, opts ...ResourceOption) (*MonitorTmpGrafanaConfig, error)
public static MonitorTmpGrafanaConfig Get(string name, Input<string> id, MonitorTmpGrafanaConfigState? state, CustomResourceOptions? opts = null)
public static MonitorTmpGrafanaConfig get(String name, Output<String> id, MonitorTmpGrafanaConfigState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:MonitorTmpGrafanaConfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Config string
JSON encoded string.
InstanceId string
Instance id.
MonitorTmpGrafanaConfigId string
ID of the resource.
Config string
JSON encoded string.
InstanceId string
Instance id.
MonitorTmpGrafanaConfigId string
ID of the resource.
config String
JSON encoded string.
instanceId String
Instance id.
monitorTmpGrafanaConfigId String
ID of the resource.
config string
JSON encoded string.
instanceId string
Instance id.
monitorTmpGrafanaConfigId string
ID of the resource.
config str
JSON encoded string.
instance_id str
Instance id.
monitor_tmp_grafana_config_id str
ID of the resource.
config String
JSON encoded string.
instanceId String
Instance id.
monitorTmpGrafanaConfigId String
ID of the resource.

Import

monitor tmp_grafana_config can be imported using the id, e.g.

$ pulumi import tencentcloud:index/monitorTmpGrafanaConfig:MonitorTmpGrafanaConfig tmp_grafana_config tmp_grafana_config_id
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.