WorkspaceApiKey

class WorkspaceApiKey : KotlinCustomResource

Provides an Amazon Managed Grafana workspace API Key resource.

Example Usage

Basic configuration

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.grafana.WorkspaceApiKey;
import com.pulumi.aws.grafana.WorkspaceApiKeyArgs;
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 key = new WorkspaceApiKey("key", WorkspaceApiKeyArgs.builder()
.keyName("test-key")
.keyRole("VIEWER")
.secondsToLive(3600)
.workspaceId(aws_grafana_workspace.test().id())
.build());
}
}

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val key: Output<String>

The key token in JSON format. Use this value as a bearer token to authenticate HTTP requests to the workspace.

Link copied to clipboard
val keyName: Output<String>

Specifies the name of the API key. Key names must be unique to the workspace.

Link copied to clipboard
val keyRole: Output<String>

Specifies the permission level of the API key. Valid values are VIEWER, EDITOR, or ADMIN.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val secondsToLive: Output<Int>

Specifies the time in seconds until the API key expires. Keys can be valid for up to 30 days.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val workspaceId: Output<String>

The ID of the workspace that the API key is valid for.