Target Args
The Cloud Deploy Target
resource
Example Usage
Multi_target
tests creating and updating a multi-target
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const primary = new gcp.clouddeploy.Target("primary", {
location: "us-west1",
name: "target",
deployParameters: {},
description: "multi-target description",
executionConfigs: [{
usages: [
"RENDER",
"DEPLOY",
],
executionTimeout: "3600s",
}],
multiTarget: {
targetIds: [
"1",
"2",
],
},
project: "my-project-name",
requireApproval: false,
annotations: {
my_first_annotation: "example-annotation-1",
my_second_annotation: "example-annotation-2",
},
labels: {
my_first_label: "example-label-1",
my_second_label: "example-label-2",
},
});
import pulumi
import pulumi_gcp as gcp
primary = gcp.clouddeploy.Target("primary",
location="us-west1",
name="target",
deploy_parameters={},
description="multi-target description",
execution_configs=[{
"usages": [
"RENDER",
"DEPLOY",
],
"execution_timeout": "3600s",
}],
multi_target={
"target_ids": [
"1",
"2",
],
},
project="my-project-name",
require_approval=False,
annotations={
"my_first_annotation": "example-annotation-1",
"my_second_annotation": "example-annotation-2",
},
labels={
"my_first_label": "example-label-1",
"my_second_label": "example-label-2",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var primary = new Gcp.CloudDeploy.Target("primary", new()
{
Location = "us-west1",
Name = "target",
DeployParameters = null,
Description = "multi-target description",
ExecutionConfigs = new[]
{
new Gcp.CloudDeploy.Inputs.TargetExecutionConfigArgs
{
Usages = new[]
{
"RENDER",
"DEPLOY",
},
ExecutionTimeout = "3600s",
},
},
MultiTarget = new Gcp.CloudDeploy.Inputs.TargetMultiTargetArgs
{
TargetIds = new[]
{
"1",
"2",
},
},
Project = "my-project-name",
RequireApproval = false,
Annotations =
{
{ "my_first_annotation", "example-annotation-1" },
{ "my_second_annotation", "example-annotation-2" },
},
Labels =
{
{ "my_first_label", "example-label-1" },
{ "my_second_label", "example-label-2" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/clouddeploy"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := clouddeploy.NewTarget(ctx, "primary", &clouddeploy.TargetArgs{
Location: pulumi.String("us-west1"),
Name: pulumi.String("target"),
DeployParameters: nil,
Description: pulumi.String("multi-target description"),
ExecutionConfigs: clouddeploy.TargetExecutionConfigArray{
&clouddeploy.TargetExecutionConfigArgs{
Usages: pulumi.StringArray{
pulumi.String("RENDER"),
pulumi.String("DEPLOY"),
},
ExecutionTimeout: pulumi.String("3600s"),
},
},
MultiTarget: &clouddeploy.TargetMultiTargetArgs{
TargetIds: pulumi.StringArray{
pulumi.String("1"),
pulumi.String("2"),
},
},
Project: pulumi.String("my-project-name"),
RequireApproval: pulumi.Bool(false),
Annotations: pulumi.StringMap{
"my_first_annotation": pulumi.String("example-annotation-1"),
"my_second_annotation": pulumi.String("example-annotation-2"),
},
Labels: pulumi.StringMap{
"my_first_label": pulumi.String("example-label-1"),
"my_second_label": pulumi.String("example-label-2"),
},
})
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.gcp.clouddeploy.Target;
import com.pulumi.gcp.clouddeploy.TargetArgs;
import com.pulumi.gcp.clouddeploy.inputs.TargetExecutionConfigArgs;
import com.pulumi.gcp.clouddeploy.inputs.TargetMultiTargetArgs;
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 primary = new Target("primary", TargetArgs.builder()
.location("us-west1")
.name("target")
.deployParameters()
.description("multi-target description")
.executionConfigs(TargetExecutionConfigArgs.builder()
.usages(
"RENDER",
"DEPLOY")
.executionTimeout("3600s")
.build())
.multiTarget(TargetMultiTargetArgs.builder()
.targetIds(
"1",
"2")
.build())
.project("my-project-name")
.requireApproval(false)
.annotations(Map.ofEntries(
Map.entry("my_first_annotation", "example-annotation-1"),
Map.entry("my_second_annotation", "example-annotation-2")
))
.labels(Map.ofEntries(
Map.entry("my_first_label", "example-label-1"),
Map.entry("my_second_label", "example-label-2")
))
.build());
}
}
resources:
primary:
type: gcp:clouddeploy:Target
properties:
location: us-west1
name: target
deployParameters: {}
description: multi-target description
executionConfigs:
- usages:
- RENDER
- DEPLOY
executionTimeout: 3600s
multiTarget:
targetIds:
- '1'
- '2'
project: my-project-name
requireApproval: false
annotations:
my_first_annotation: example-annotation-1
my_second_annotation: example-annotation-2
labels:
my_first_label: example-label-1
my_second_label: example-label-2
Run_target
tests creating and updating a cloud run target
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const primary = new gcp.clouddeploy.Target("primary", {
location: "us-west1",
name: "target",
deployParameters: {},
description: "basic description",
executionConfigs: [{
usages: [
"RENDER",
"DEPLOY",
],
executionTimeout: "3600s",
}],
project: "my-project-name",
requireApproval: false,
run: {
location: "projects/my-project-name/locations/us-west1",
},
annotations: {
my_first_annotation: "example-annotation-1",
my_second_annotation: "example-annotation-2",
},
labels: {
my_first_label: "example-label-1",
my_second_label: "example-label-2",
},
});
import pulumi
import pulumi_gcp as gcp
primary = gcp.clouddeploy.Target("primary",
location="us-west1",
name="target",
deploy_parameters={},
description="basic description",
execution_configs=[{
"usages": [
"RENDER",
"DEPLOY",
],
"execution_timeout": "3600s",
}],
project="my-project-name",
require_approval=False,
run={
"location": "projects/my-project-name/locations/us-west1",
},
annotations={
"my_first_annotation": "example-annotation-1",
"my_second_annotation": "example-annotation-2",
},
labels={
"my_first_label": "example-label-1",
"my_second_label": "example-label-2",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var primary = new Gcp.CloudDeploy.Target("primary", new()
{
Location = "us-west1",
Name = "target",
DeployParameters = null,
Description = "basic description",
ExecutionConfigs = new[]
{
new Gcp.CloudDeploy.Inputs.TargetExecutionConfigArgs
{
Usages = new[]
{
"RENDER",
"DEPLOY",
},
ExecutionTimeout = "3600s",
},
},
Project = "my-project-name",
RequireApproval = false,
Run = new Gcp.CloudDeploy.Inputs.TargetRunArgs
{
Location = "projects/my-project-name/locations/us-west1",
},
Annotations =
{
{ "my_first_annotation", "example-annotation-1" },
{ "my_second_annotation", "example-annotation-2" },
},
Labels =
{
{ "my_first_label", "example-label-1" },
{ "my_second_label", "example-label-2" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/clouddeploy"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := clouddeploy.NewTarget(ctx, "primary", &clouddeploy.TargetArgs{
Location: pulumi.String("us-west1"),
Name: pulumi.String("target"),
DeployParameters: nil,
Description: pulumi.String("basic description"),
ExecutionConfigs: clouddeploy.TargetExecutionConfigArray{
&clouddeploy.TargetExecutionConfigArgs{
Usages: pulumi.StringArray{
pulumi.String("RENDER"),
pulumi.String("DEPLOY"),
},
ExecutionTimeout: pulumi.String("3600s"),
},
},
Project: pulumi.String("my-project-name"),
RequireApproval: pulumi.Bool(false),
Run: &clouddeploy.TargetRunArgs{
Location: pulumi.String("projects/my-project-name/locations/us-west1"),
},
Annotations: pulumi.StringMap{
"my_first_annotation": pulumi.String("example-annotation-1"),
"my_second_annotation": pulumi.String("example-annotation-2"),
},
Labels: pulumi.StringMap{
"my_first_label": pulumi.String("example-label-1"),
"my_second_label": pulumi.String("example-label-2"),
},
})
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.gcp.clouddeploy.Target;
import com.pulumi.gcp.clouddeploy.TargetArgs;
import com.pulumi.gcp.clouddeploy.inputs.TargetExecutionConfigArgs;
import com.pulumi.gcp.clouddeploy.inputs.TargetRunArgs;
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 primary = new Target("primary", TargetArgs.builder()
.location("us-west1")
.name("target")
.deployParameters()
.description("basic description")
.executionConfigs(TargetExecutionConfigArgs.builder()
.usages(
"RENDER",
"DEPLOY")
.executionTimeout("3600s")
.build())
.project("my-project-name")
.requireApproval(false)
.run(TargetRunArgs.builder()
.location("projects/my-project-name/locations/us-west1")
.build())
.annotations(Map.ofEntries(
Map.entry("my_first_annotation", "example-annotation-1"),
Map.entry("my_second_annotation", "example-annotation-2")
))
.labels(Map.ofEntries(
Map.entry("my_first_label", "example-label-1"),
Map.entry("my_second_label", "example-label-2")
))
.build());
}
}
resources:
primary:
type: gcp:clouddeploy:Target
properties:
location: us-west1
name: target
deployParameters: {}
description: basic description
executionConfigs:
- usages:
- RENDER
- DEPLOY
executionTimeout: 3600s
project: my-project-name
requireApproval: false
run:
location: projects/my-project-name/locations/us-west1
annotations:
my_first_annotation: example-annotation-1
my_second_annotation: example-annotation-2
labels:
my_first_label: example-label-1
my_second_label: example-label-2
Target
Creates a basic Cloud Deploy target
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const primary = new gcp.clouddeploy.Target("primary", {
location: "us-west1",
name: "target",
deployParameters: {
deployParameterKey: "deployParameterValue",
},
description: "basic description",
gke: {
cluster: "projects/my-project-name/locations/us-west1/clusters/example-cluster-name",
},
project: "my-project-name",
requireApproval: false,
annotations: {
my_first_annotation: "example-annotation-1",
my_second_annotation: "example-annotation-2",
},
labels: {
my_first_label: "example-label-1",
my_second_label: "example-label-2",
},
});
import pulumi
import pulumi_gcp as gcp
primary = gcp.clouddeploy.Target("primary",
location="us-west1",
name="target",
deploy_parameters={
"deployParameterKey": "deployParameterValue",
},
description="basic description",
gke={
"cluster": "projects/my-project-name/locations/us-west1/clusters/example-cluster-name",
},
project="my-project-name",
require_approval=False,
annotations={
"my_first_annotation": "example-annotation-1",
"my_second_annotation": "example-annotation-2",
},
labels={
"my_first_label": "example-label-1",
"my_second_label": "example-label-2",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var primary = new Gcp.CloudDeploy.Target("primary", new()
{
Location = "us-west1",
Name = "target",
DeployParameters =
{
{ "deployParameterKey", "deployParameterValue" },
},
Description = "basic description",
Gke = new Gcp.CloudDeploy.Inputs.TargetGkeArgs
{
Cluster = "projects/my-project-name/locations/us-west1/clusters/example-cluster-name",
},
Project = "my-project-name",
RequireApproval = false,
Annotations =
{
{ "my_first_annotation", "example-annotation-1" },
{ "my_second_annotation", "example-annotation-2" },
},
Labels =
{
{ "my_first_label", "example-label-1" },
{ "my_second_label", "example-label-2" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/clouddeploy"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := clouddeploy.NewTarget(ctx, "primary", &clouddeploy.TargetArgs{
Location: pulumi.String("us-west1"),
Name: pulumi.String("target"),
DeployParameters: pulumi.StringMap{
"deployParameterKey": pulumi.String("deployParameterValue"),
},
Description: pulumi.String("basic description"),
Gke: &clouddeploy.TargetGkeArgs{
Cluster: pulumi.String("projects/my-project-name/locations/us-west1/clusters/example-cluster-name"),
},
Project: pulumi.String("my-project-name"),
RequireApproval: pulumi.Bool(false),
Annotations: pulumi.StringMap{
"my_first_annotation": pulumi.String("example-annotation-1"),
"my_second_annotation": pulumi.String("example-annotation-2"),
},
Labels: pulumi.StringMap{
"my_first_label": pulumi.String("example-label-1"),
"my_second_label": pulumi.String("example-label-2"),
},
})
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.gcp.clouddeploy.Target;
import com.pulumi.gcp.clouddeploy.TargetArgs;
import com.pulumi.gcp.clouddeploy.inputs.TargetGkeArgs;
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 primary = new Target("primary", TargetArgs.builder()
.location("us-west1")
.name("target")
.deployParameters(Map.of("deployParameterKey", "deployParameterValue"))
.description("basic description")
.gke(TargetGkeArgs.builder()
.cluster("projects/my-project-name/locations/us-west1/clusters/example-cluster-name")
.build())
.project("my-project-name")
.requireApproval(false)
.annotations(Map.ofEntries(
Map.entry("my_first_annotation", "example-annotation-1"),
Map.entry("my_second_annotation", "example-annotation-2")
))
.labels(Map.ofEntries(
Map.entry("my_first_label", "example-label-1"),
Map.entry("my_second_label", "example-label-2")
))
.build());
}
}
resources:
primary:
type: gcp:clouddeploy:Target
properties:
location: us-west1
name: target
deployParameters:
deployParameterKey: deployParameterValue
description: basic description
gke:
cluster: projects/my-project-name/locations/us-west1/clusters/example-cluster-name
project: my-project-name
requireApproval: false
annotations:
my_first_annotation: example-annotation-1
my_second_annotation: example-annotation-2
labels:
my_first_label: example-label-1
my_second_label: example-label-2
Import
Target can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/targets/{{name}}
{{project}}/{{location}}/{{name}}
{{location}}/{{name}}
When using thepulumi import
command, Target can be imported using one of the formats above. For example:
$ pulumi import gcp:clouddeploy/target:Target default projects/{{project}}/locations/{{location}}/targets/{{name}}
$ pulumi import gcp:clouddeploy/target:Target default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:clouddeploy/target:Target default {{location}}/{{name}}
Constructors
Properties
Optional. User annotations. These attributes can only be set and used by the user, and not by Google Cloud Deploy. See https://google.aip.dev/128#annotations for more details such as format and size limitations. Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations
for all of the annotations present on the resource.
Information specifying an Anthos Cluster.
Optional. Information specifying a Custom Target.
Optional. The deploy parameters to use for this target.
Optional. Description of the Target
. Max length is 255 characters.
Configurations for all execution that relates to this Target
. Each ExecutionEnvironmentUsage
value may only be used in a single configuration; using the same value multiple times is an error. When one or more configurations are specified, they must include the RENDER
and DEPLOY
ExecutionEnvironmentUsage
values. When no configurations are specified, execution will use the default specified in DefaultPool
.
Information specifying a GKE Cluster.
Optional. Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels
for all of the labels present on the resource.
Information specifying a multiTarget.
Optional. Whether or not the Target
requires approval.
Information specifying a Cloud Run deployment target.