alicloud.arms.GrafanaWorkspace
Explore with Pulumi AI
Provides a ARMS Grafana Workspace resource.
For information about ARMS Grafana Workspace and how to use it, see What is Grafana Workspace.
NOTE: Available since v1.215.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const default = alicloud.resourcemanager.getResourceGroups({});
const defaultGrafanaWorkspace = new alicloud.arms.GrafanaWorkspace("default", {
grafanaVersion: "9.0.x",
description: name,
resourceGroupId: _default.then(_default => _default.ids?.[0]),
grafanaWorkspaceEdition: "standard",
grafanaWorkspaceName: name,
tags: {
Created: "tf",
For: "example",
},
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.resourcemanager.get_resource_groups()
default_grafana_workspace = alicloud.arms.GrafanaWorkspace("default",
grafana_version="9.0.x",
description=name,
resource_group_id=default.ids[0],
grafana_workspace_edition="standard",
grafana_workspace_name=name,
tags={
"Created": "tf",
"For": "example",
})
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/arms"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"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 := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_default, err := resourcemanager.GetResourceGroups(ctx, nil, nil)
if err != nil {
return err
}
_, err = arms.NewGrafanaWorkspace(ctx, "default", &arms.GrafanaWorkspaceArgs{
GrafanaVersion: pulumi.String("9.0.x"),
Description: pulumi.String(name),
ResourceGroupId: pulumi.String(_default.Ids[0]),
GrafanaWorkspaceEdition: pulumi.String("standard"),
GrafanaWorkspaceName: pulumi.String(name),
Tags: pulumi.Map{
"Created": pulumi.Any("tf"),
"For": pulumi.Any("example"),
},
})
if err != nil {
return err
}
return nil
})
}
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") ?? "terraform-example";
var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
var defaultGrafanaWorkspace = new AliCloud.Arms.GrafanaWorkspace("default", new()
{
GrafanaVersion = "9.0.x",
Description = name,
ResourceGroupId = @default.Apply(@default => @default.Apply(getResourceGroupsResult => getResourceGroupsResult.Ids[0])),
GrafanaWorkspaceEdition = "standard",
GrafanaWorkspaceName = name,
Tags =
{
{ "Created", "tf" },
{ "For", "example" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.arms.GrafanaWorkspace;
import com.pulumi.alicloud.arms.GrafanaWorkspaceArgs;
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("terraform-example");
final var default = ResourcemanagerFunctions.getResourceGroups();
var defaultGrafanaWorkspace = new GrafanaWorkspace("defaultGrafanaWorkspace", GrafanaWorkspaceArgs.builder()
.grafanaVersion("9.0.x")
.description(name)
.resourceGroupId(default_.ids()[0])
.grafanaWorkspaceEdition("standard")
.grafanaWorkspaceName(name)
.tags(Map.ofEntries(
Map.entry("Created", "tf"),
Map.entry("For", "example")
))
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
defaultGrafanaWorkspace:
type: alicloud:arms:GrafanaWorkspace
name: default
properties:
grafanaVersion: 9.0.x
description: ${name}
resourceGroupId: ${default.ids[0]}
grafanaWorkspaceEdition: standard
grafanaWorkspaceName: ${name}
tags:
Created: tf
For: example
variables:
default:
fn::invoke:
Function: alicloud:resourcemanager:getResourceGroups
Arguments: {}
Create GrafanaWorkspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GrafanaWorkspace(name: string, args?: GrafanaWorkspaceArgs, opts?: CustomResourceOptions);
@overload
def GrafanaWorkspace(resource_name: str,
args: Optional[GrafanaWorkspaceArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def GrafanaWorkspace(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
grafana_version: Optional[str] = None,
grafana_workspace_edition: Optional[str] = None,
grafana_workspace_name: Optional[str] = None,
resource_group_id: Optional[str] = None,
tags: Optional[Mapping[str, Any]] = None)
func NewGrafanaWorkspace(ctx *Context, name string, args *GrafanaWorkspaceArgs, opts ...ResourceOption) (*GrafanaWorkspace, error)
public GrafanaWorkspace(string name, GrafanaWorkspaceArgs? args = null, CustomResourceOptions? opts = null)
public GrafanaWorkspace(String name, GrafanaWorkspaceArgs args)
public GrafanaWorkspace(String name, GrafanaWorkspaceArgs args, CustomResourceOptions options)
type: alicloud:arms:GrafanaWorkspace
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 GrafanaWorkspaceArgs
- 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 GrafanaWorkspaceArgs
- 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 GrafanaWorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GrafanaWorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GrafanaWorkspaceArgs
- 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 grafanaWorkspaceResource = new AliCloud.Arms.GrafanaWorkspace("grafanaWorkspaceResource", new()
{
Description = "string",
GrafanaVersion = "string",
GrafanaWorkspaceEdition = "string",
GrafanaWorkspaceName = "string",
ResourceGroupId = "string",
Tags =
{
{ "string", "any" },
},
});
example, err := arms.NewGrafanaWorkspace(ctx, "grafanaWorkspaceResource", &arms.GrafanaWorkspaceArgs{
Description: pulumi.String("string"),
GrafanaVersion: pulumi.String("string"),
GrafanaWorkspaceEdition: pulumi.String("string"),
GrafanaWorkspaceName: pulumi.String("string"),
ResourceGroupId: pulumi.String("string"),
Tags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var grafanaWorkspaceResource = new GrafanaWorkspace("grafanaWorkspaceResource", GrafanaWorkspaceArgs.builder()
.description("string")
.grafanaVersion("string")
.grafanaWorkspaceEdition("string")
.grafanaWorkspaceName("string")
.resourceGroupId("string")
.tags(Map.of("string", "any"))
.build());
grafana_workspace_resource = alicloud.arms.GrafanaWorkspace("grafanaWorkspaceResource",
description="string",
grafana_version="string",
grafana_workspace_edition="string",
grafana_workspace_name="string",
resource_group_id="string",
tags={
"string": "any",
})
const grafanaWorkspaceResource = new alicloud.arms.GrafanaWorkspace("grafanaWorkspaceResource", {
description: "string",
grafanaVersion: "string",
grafanaWorkspaceEdition: "string",
grafanaWorkspaceName: "string",
resourceGroupId: "string",
tags: {
string: "any",
},
});
type: alicloud:arms:GrafanaWorkspace
properties:
description: string
grafanaVersion: string
grafanaWorkspaceEdition: string
grafanaWorkspaceName: string
resourceGroupId: string
tags:
string: any
GrafanaWorkspace 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 GrafanaWorkspace resource accepts the following input properties:
- Description string
- Description.
- string
- The version of the grafana.
- Grafana
Workspace stringEdition - The edition of the grafana.
- Grafana
Workspace stringName - The name of the resource.
- Resource
Group stringId - The ID of the resource group.
- Dictionary<string, object>
- The tag of the resource.
- Description string
- Description.
- string
- The version of the grafana.
- Grafana
Workspace stringEdition - The edition of the grafana.
- Grafana
Workspace stringName - The name of the resource.
- Resource
Group stringId - The ID of the resource group.
- map[string]interface{}
- The tag of the resource.
- description String
- Description.
- String
- The version of the grafana.
- grafana
Workspace StringEdition - The edition of the grafana.
- grafana
Workspace StringName - The name of the resource.
- resource
Group StringId - The ID of the resource group.
- Map<String,Object>
- The tag of the resource.
- description string
- Description.
- string
- The version of the grafana.
- grafana
Workspace stringEdition - The edition of the grafana.
- grafana
Workspace stringName - The name of the resource.
- resource
Group stringId - The ID of the resource group.
- {[key: string]: any}
- The tag of the resource.
- description str
- Description.
- grafana_
version str - The version of the grafana.
- grafana_
workspace_ stredition - The edition of the grafana.
- grafana_
workspace_ strname - The name of the resource.
- resource_
group_ strid - The ID of the resource group.
- Mapping[str, Any]
- The tag of the resource.
- description String
- Description.
- String
- The version of the grafana.
- grafana
Workspace StringEdition - The edition of the grafana.
- grafana
Workspace StringName - The name of the resource.
- resource
Group StringId - The ID of the resource group.
- Map<Any>
- The tag of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the GrafanaWorkspace resource produces the following output properties:
- Create
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of the resource.
- Create
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- The status of the resource.
- create
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of the resource.
- create
Time string - The creation time of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- The status of the resource.
- create_
time str - The creation time of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- The status of the resource.
- create
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- The status of the resource.
Look up Existing GrafanaWorkspace Resource
Get an existing GrafanaWorkspace 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?: GrafanaWorkspaceState, opts?: CustomResourceOptions): GrafanaWorkspace
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
grafana_version: Optional[str] = None,
grafana_workspace_edition: Optional[str] = None,
grafana_workspace_name: Optional[str] = None,
resource_group_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, Any]] = None) -> GrafanaWorkspace
func GetGrafanaWorkspace(ctx *Context, name string, id IDInput, state *GrafanaWorkspaceState, opts ...ResourceOption) (*GrafanaWorkspace, error)
public static GrafanaWorkspace Get(string name, Input<string> id, GrafanaWorkspaceState? state, CustomResourceOptions? opts = null)
public static GrafanaWorkspace get(String name, Output<String> id, GrafanaWorkspaceState 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.
- Create
Time string - The creation time of the resource.
- Description string
- Description.
- string
- The version of the grafana.
- Grafana
Workspace stringEdition - The edition of the grafana.
- Grafana
Workspace stringName - The name of the resource.
- Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource.
- Dictionary<string, object>
- The tag of the resource.
- Create
Time string - The creation time of the resource.
- Description string
- Description.
- string
- The version of the grafana.
- Grafana
Workspace stringEdition - The edition of the grafana.
- Grafana
Workspace stringName - The name of the resource.
- Resource
Group stringId - The ID of the resource group.
- Status string
- The status of the resource.
- map[string]interface{}
- The tag of the resource.
- create
Time String - The creation time of the resource.
- description String
- Description.
- String
- The version of the grafana.
- grafana
Workspace StringEdition - The edition of the grafana.
- grafana
Workspace StringName - The name of the resource.
- resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource.
- Map<String,Object>
- The tag of the resource.
- create
Time string - The creation time of the resource.
- description string
- Description.
- string
- The version of the grafana.
- grafana
Workspace stringEdition - The edition of the grafana.
- grafana
Workspace stringName - The name of the resource.
- resource
Group stringId - The ID of the resource group.
- status string
- The status of the resource.
- {[key: string]: any}
- The tag of the resource.
- create_
time str - The creation time of the resource.
- description str
- Description.
- grafana_
version str - The version of the grafana.
- grafana_
workspace_ stredition - The edition of the grafana.
- grafana_
workspace_ strname - The name of the resource.
- resource_
group_ strid - The ID of the resource group.
- status str
- The status of the resource.
- Mapping[str, Any]
- The tag of the resource.
- create
Time String - The creation time of the resource.
- description String
- Description.
- String
- The version of the grafana.
- grafana
Workspace StringEdition - The edition of the grafana.
- grafana
Workspace StringName - The name of the resource.
- resource
Group StringId - The ID of the resource group.
- status String
- The status of the resource.
- Map<Any>
- The tag of the resource.
Import
ARMS Grafana Workspace can be imported using the id, e.g.
$ pulumi import alicloud:arms/grafanaWorkspace:GrafanaWorkspace example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.