gcp.networksecurity.AuthorizationPolicy
Explore with Pulumi AI
Example Usage
Network Security Authorization Policy Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.networksecurity.AuthorizationPolicy("default", {
name: "my-authorization-policy",
labels: {
foo: "bar",
},
description: "my description",
action: "ALLOW",
rules: [{
sources: [{
principals: ["namespace/*"],
ipBlocks: ["1.2.3.0/24"],
}],
}],
});
import pulumi
import pulumi_gcp as gcp
default = gcp.networksecurity.AuthorizationPolicy("default",
name="my-authorization-policy",
labels={
"foo": "bar",
},
description="my description",
action="ALLOW",
rules=[{
"sources": [{
"principals": ["namespace/*"],
"ip_blocks": ["1.2.3.0/24"],
}],
}])
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/networksecurity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networksecurity.NewAuthorizationPolicy(ctx, "default", &networksecurity.AuthorizationPolicyArgs{
Name: pulumi.String("my-authorization-policy"),
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
Description: pulumi.String("my description"),
Action: pulumi.String("ALLOW"),
Rules: networksecurity.AuthorizationPolicyRuleArray{
&networksecurity.AuthorizationPolicyRuleArgs{
Sources: networksecurity.AuthorizationPolicyRuleSourceArray{
&networksecurity.AuthorizationPolicyRuleSourceArgs{
Principals: pulumi.StringArray{
pulumi.String("namespace/*"),
},
IpBlocks: pulumi.StringArray{
pulumi.String("1.2.3.0/24"),
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.NetworkSecurity.AuthorizationPolicy("default", new()
{
Name = "my-authorization-policy",
Labels =
{
{ "foo", "bar" },
},
Description = "my description",
Action = "ALLOW",
Rules = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleArgs
{
Sources = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleSourceArgs
{
Principals = new[]
{
"namespace/*",
},
IpBlocks = new[]
{
"1.2.3.0/24",
},
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.networksecurity.AuthorizationPolicy;
import com.pulumi.gcp.networksecurity.AuthorizationPolicyArgs;
import com.pulumi.gcp.networksecurity.inputs.AuthorizationPolicyRuleArgs;
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 default_ = new AuthorizationPolicy("default", AuthorizationPolicyArgs.builder()
.name("my-authorization-policy")
.labels(Map.of("foo", "bar"))
.description("my description")
.action("ALLOW")
.rules(AuthorizationPolicyRuleArgs.builder()
.sources(AuthorizationPolicyRuleSourceArgs.builder()
.principals("namespace/*")
.ipBlocks("1.2.3.0/24")
.build())
.build())
.build());
}
}
resources:
default:
type: gcp:networksecurity:AuthorizationPolicy
properties:
name: my-authorization-policy
labels:
foo: bar
description: my description
action: ALLOW
rules:
- sources:
- principals:
- namespace/*
ipBlocks:
- 1.2.3.0/24
Network Security Authorization Policy Destinations
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.networksecurity.AuthorizationPolicy("default", {
name: "my-authorization-policy",
labels: {
foo: "bar",
},
description: "my description",
action: "ALLOW",
rules: [{
sources: [{
principals: ["namespace/*"],
ipBlocks: ["1.2.3.0/24"],
}],
destinations: [{
hosts: ["mydomain.*"],
ports: [8080],
methods: ["GET"],
httpHeaderMatch: {
headerName: ":method",
regexMatch: "GET",
},
}],
}],
});
import pulumi
import pulumi_gcp as gcp
default = gcp.networksecurity.AuthorizationPolicy("default",
name="my-authorization-policy",
labels={
"foo": "bar",
},
description="my description",
action="ALLOW",
rules=[{
"sources": [{
"principals": ["namespace/*"],
"ip_blocks": ["1.2.3.0/24"],
}],
"destinations": [{
"hosts": ["mydomain.*"],
"ports": [8080],
"methods": ["GET"],
"http_header_match": {
"header_name": ":method",
"regex_match": "GET",
},
}],
}])
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/networksecurity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networksecurity.NewAuthorizationPolicy(ctx, "default", &networksecurity.AuthorizationPolicyArgs{
Name: pulumi.String("my-authorization-policy"),
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
Description: pulumi.String("my description"),
Action: pulumi.String("ALLOW"),
Rules: networksecurity.AuthorizationPolicyRuleArray{
&networksecurity.AuthorizationPolicyRuleArgs{
Sources: networksecurity.AuthorizationPolicyRuleSourceArray{
&networksecurity.AuthorizationPolicyRuleSourceArgs{
Principals: pulumi.StringArray{
pulumi.String("namespace/*"),
},
IpBlocks: pulumi.StringArray{
pulumi.String("1.2.3.0/24"),
},
},
},
Destinations: networksecurity.AuthorizationPolicyRuleDestinationArray{
&networksecurity.AuthorizationPolicyRuleDestinationArgs{
Hosts: pulumi.StringArray{
pulumi.String("mydomain.*"),
},
Ports: pulumi.IntArray{
pulumi.Int(8080),
},
Methods: pulumi.StringArray{
pulumi.String("GET"),
},
HttpHeaderMatch: &networksecurity.AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs{
HeaderName: pulumi.String(":method"),
RegexMatch: pulumi.String("GET"),
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.NetworkSecurity.AuthorizationPolicy("default", new()
{
Name = "my-authorization-policy",
Labels =
{
{ "foo", "bar" },
},
Description = "my description",
Action = "ALLOW",
Rules = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleArgs
{
Sources = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleSourceArgs
{
Principals = new[]
{
"namespace/*",
},
IpBlocks = new[]
{
"1.2.3.0/24",
},
},
},
Destinations = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleDestinationArgs
{
Hosts = new[]
{
"mydomain.*",
},
Ports = new[]
{
8080,
},
Methods = new[]
{
"GET",
},
HttpHeaderMatch = new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs
{
HeaderName = ":method",
RegexMatch = "GET",
},
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.networksecurity.AuthorizationPolicy;
import com.pulumi.gcp.networksecurity.AuthorizationPolicyArgs;
import com.pulumi.gcp.networksecurity.inputs.AuthorizationPolicyRuleArgs;
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 default_ = new AuthorizationPolicy("default", AuthorizationPolicyArgs.builder()
.name("my-authorization-policy")
.labels(Map.of("foo", "bar"))
.description("my description")
.action("ALLOW")
.rules(AuthorizationPolicyRuleArgs.builder()
.sources(AuthorizationPolicyRuleSourceArgs.builder()
.principals("namespace/*")
.ipBlocks("1.2.3.0/24")
.build())
.destinations(AuthorizationPolicyRuleDestinationArgs.builder()
.hosts("mydomain.*")
.ports(8080)
.methods("GET")
.httpHeaderMatch(AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs.builder()
.headerName(":method")
.regexMatch("GET")
.build())
.build())
.build())
.build());
}
}
resources:
default:
type: gcp:networksecurity:AuthorizationPolicy
properties:
name: my-authorization-policy
labels:
foo: bar
description: my description
action: ALLOW
rules:
- sources:
- principals:
- namespace/*
ipBlocks:
- 1.2.3.0/24
destinations:
- hosts:
- mydomain.*
ports:
- 8080
methods:
- GET
httpHeaderMatch:
headerName: :method
regexMatch: GET
Create AuthorizationPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthorizationPolicy(name: string, args: AuthorizationPolicyArgs, opts?: CustomResourceOptions);
@overload
def AuthorizationPolicy(resource_name: str,
args: AuthorizationPolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthorizationPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
description: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
rules: Optional[Sequence[AuthorizationPolicyRuleArgs]] = None)
func NewAuthorizationPolicy(ctx *Context, name string, args AuthorizationPolicyArgs, opts ...ResourceOption) (*AuthorizationPolicy, error)
public AuthorizationPolicy(string name, AuthorizationPolicyArgs args, CustomResourceOptions? opts = null)
public AuthorizationPolicy(String name, AuthorizationPolicyArgs args)
public AuthorizationPolicy(String name, AuthorizationPolicyArgs args, CustomResourceOptions options)
type: gcp:networksecurity:AuthorizationPolicy
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 AuthorizationPolicyArgs
- 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 AuthorizationPolicyArgs
- 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 AuthorizationPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthorizationPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthorizationPolicyArgs
- 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 authorizationPolicyResource = new Gcp.NetworkSecurity.AuthorizationPolicy("authorizationPolicyResource", new()
{
Action = "string",
Description = "string",
Labels =
{
{ "string", "string" },
},
Location = "string",
Name = "string",
Project = "string",
Rules = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleArgs
{
Destinations = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleDestinationArgs
{
Hosts = new[]
{
"string",
},
Methods = new[]
{
"string",
},
Ports = new[]
{
0,
},
HttpHeaderMatch = new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs
{
HeaderName = "string",
RegexMatch = "string",
},
},
},
Sources = new[]
{
new Gcp.NetworkSecurity.Inputs.AuthorizationPolicyRuleSourceArgs
{
IpBlocks = new[]
{
"string",
},
Principals = new[]
{
"string",
},
},
},
},
},
});
example, err := networksecurity.NewAuthorizationPolicy(ctx, "authorizationPolicyResource", &networksecurity.AuthorizationPolicyArgs{
Action: pulumi.String("string"),
Description: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Project: pulumi.String("string"),
Rules: networksecurity.AuthorizationPolicyRuleArray{
&networksecurity.AuthorizationPolicyRuleArgs{
Destinations: networksecurity.AuthorizationPolicyRuleDestinationArray{
&networksecurity.AuthorizationPolicyRuleDestinationArgs{
Hosts: pulumi.StringArray{
pulumi.String("string"),
},
Methods: pulumi.StringArray{
pulumi.String("string"),
},
Ports: pulumi.IntArray{
pulumi.Int(0),
},
HttpHeaderMatch: &networksecurity.AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs{
HeaderName: pulumi.String("string"),
RegexMatch: pulumi.String("string"),
},
},
},
Sources: networksecurity.AuthorizationPolicyRuleSourceArray{
&networksecurity.AuthorizationPolicyRuleSourceArgs{
IpBlocks: pulumi.StringArray{
pulumi.String("string"),
},
Principals: pulumi.StringArray{
pulumi.String("string"),
},
},
},
},
},
})
var authorizationPolicyResource = new AuthorizationPolicy("authorizationPolicyResource", AuthorizationPolicyArgs.builder()
.action("string")
.description("string")
.labels(Map.of("string", "string"))
.location("string")
.name("string")
.project("string")
.rules(AuthorizationPolicyRuleArgs.builder()
.destinations(AuthorizationPolicyRuleDestinationArgs.builder()
.hosts("string")
.methods("string")
.ports(0)
.httpHeaderMatch(AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs.builder()
.headerName("string")
.regexMatch("string")
.build())
.build())
.sources(AuthorizationPolicyRuleSourceArgs.builder()
.ipBlocks("string")
.principals("string")
.build())
.build())
.build());
authorization_policy_resource = gcp.networksecurity.AuthorizationPolicy("authorizationPolicyResource",
action="string",
description="string",
labels={
"string": "string",
},
location="string",
name="string",
project="string",
rules=[{
"destinations": [{
"hosts": ["string"],
"methods": ["string"],
"ports": [0],
"httpHeaderMatch": {
"headerName": "string",
"regexMatch": "string",
},
}],
"sources": [{
"ipBlocks": ["string"],
"principals": ["string"],
}],
}])
const authorizationPolicyResource = new gcp.networksecurity.AuthorizationPolicy("authorizationPolicyResource", {
action: "string",
description: "string",
labels: {
string: "string",
},
location: "string",
name: "string",
project: "string",
rules: [{
destinations: [{
hosts: ["string"],
methods: ["string"],
ports: [0],
httpHeaderMatch: {
headerName: "string",
regexMatch: "string",
},
}],
sources: [{
ipBlocks: ["string"],
principals: ["string"],
}],
}],
});
type: gcp:networksecurity:AuthorizationPolicy
properties:
action: string
description: string
labels:
string: string
location: string
name: string
project: string
rules:
- destinations:
- hosts:
- string
httpHeaderMatch:
headerName: string
regexMatch: string
methods:
- string
ports:
- 0
sources:
- ipBlocks:
- string
principals:
- string
AuthorizationPolicy 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 AuthorizationPolicy resource accepts the following input properties:
- Action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - Description string
- A free-text description of the resource. Max length 1024 characters.
- Labels Dictionary<string, string>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - Location string
- The location of the authorization policy.
The default value is
global
. - Name string
- Name of the AuthorizationPolicy resource.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Rules
List<Authorization
Policy Rule> - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- Action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - Description string
- A free-text description of the resource. Max length 1024 characters.
- Labels map[string]string
- Set of label tags associated with the AuthorizationPolicy resource.
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. - Location string
- The location of the authorization policy.
The default value is
global
. - Name string
- Name of the AuthorizationPolicy resource.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Rules
[]Authorization
Policy Rule Args - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- action String
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - description String
- A free-text description of the resource. Max length 1024 characters.
- labels Map<String,String>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location String
- The location of the authorization policy.
The default value is
global
. - name String
- Name of the AuthorizationPolicy resource.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rules
List<Authorization
Policy Rule> - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - description string
- A free-text description of the resource. Max length 1024 characters.
- labels {[key: string]: string}
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location string
- The location of the authorization policy.
The default value is
global
. - name string
- Name of the AuthorizationPolicy resource.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rules
Authorization
Policy Rule[] - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- action str
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - description str
- A free-text description of the resource. Max length 1024 characters.
- labels Mapping[str, str]
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location str
- The location of the authorization policy.
The default value is
global
. - name str
- Name of the AuthorizationPolicy resource.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rules
Sequence[Authorization
Policy Rule Args] - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- action String
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - description String
- A free-text description of the resource. Max length 1024 characters.
- labels Map<String>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location String
- The location of the authorization policy.
The default value is
global
. - name String
- Name of the AuthorizationPolicy resource.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- rules List<Property Map>
- List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthorizationPolicy resource produces the following output properties:
- Create
Time string - Time the AuthorizationPolicy was created in UTC.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Time the AuthorizationPolicy was updated in UTC.
- Create
Time string - Time the AuthorizationPolicy was created in UTC.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Update
Time string - Time the AuthorizationPolicy was updated in UTC.
- create
Time String - Time the AuthorizationPolicy was created in UTC.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Time the AuthorizationPolicy was updated in UTC.
- create
Time string - Time the AuthorizationPolicy was created in UTC.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time string - Time the AuthorizationPolicy was updated in UTC.
- create_
time str - Time the AuthorizationPolicy was created in UTC.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- update_
time str - Time the AuthorizationPolicy was updated in UTC.
- create
Time String - Time the AuthorizationPolicy was created in UTC.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- update
Time String - Time the AuthorizationPolicy was updated in UTC.
Look up Existing AuthorizationPolicy Resource
Get an existing AuthorizationPolicy 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?: AuthorizationPolicyState, opts?: CustomResourceOptions): AuthorizationPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
rules: Optional[Sequence[AuthorizationPolicyRuleArgs]] = None,
update_time: Optional[str] = None) -> AuthorizationPolicy
func GetAuthorizationPolicy(ctx *Context, name string, id IDInput, state *AuthorizationPolicyState, opts ...ResourceOption) (*AuthorizationPolicy, error)
public static AuthorizationPolicy Get(string name, Input<string> id, AuthorizationPolicyState? state, CustomResourceOptions? opts = null)
public static AuthorizationPolicy get(String name, Output<String> id, AuthorizationPolicyState 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.
- Action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - Create
Time string - Time the AuthorizationPolicy was created in UTC.
- Description string
- A free-text description of the resource. Max length 1024 characters.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels Dictionary<string, string>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - Location string
- The location of the authorization policy.
The default value is
global
. - Name string
- Name of the AuthorizationPolicy resource.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Rules
List<Authorization
Policy Rule> - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- Update
Time string - Time the AuthorizationPolicy was updated in UTC.
- Action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - Create
Time string - Time the AuthorizationPolicy was created in UTC.
- Description string
- A free-text description of the resource. Max length 1024 characters.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels map[string]string
- Set of label tags associated with the AuthorizationPolicy resource.
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. - Location string
- The location of the authorization policy.
The default value is
global
. - Name string
- Name of the AuthorizationPolicy resource.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Rules
[]Authorization
Policy Rule Args - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- Update
Time string - Time the AuthorizationPolicy was updated in UTC.
- action String
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - create
Time String - Time the AuthorizationPolicy was created in UTC.
- description String
- A free-text description of the resource. Max length 1024 characters.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String,String>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location String
- The location of the authorization policy.
The default value is
global
. - name String
- Name of the AuthorizationPolicy resource.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
List<Authorization
Policy Rule> - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- update
Time String - Time the AuthorizationPolicy was updated in UTC.
- action string
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - create
Time string - Time the AuthorizationPolicy was created in UTC.
- description string
- A free-text description of the resource. Max length 1024 characters.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels {[key: string]: string}
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location string
- The location of the authorization policy.
The default value is
global
. - name string
- Name of the AuthorizationPolicy resource.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
Authorization
Policy Rule[] - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- update
Time string - Time the AuthorizationPolicy was updated in UTC.
- action str
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - create_
time str - Time the AuthorizationPolicy was created in UTC.
- description str
- A free-text description of the resource. Max length 1024 characters.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Mapping[str, str]
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location str
- The location of the authorization policy.
The default value is
global
. - name str
- Name of the AuthorizationPolicy resource.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- rules
Sequence[Authorization
Policy Rule Args] - List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- update_
time str - Time the AuthorizationPolicy was updated in UTC.
- action String
- The action to take when a rule match is found. Possible values are "ALLOW" or "DENY".
Possible values are:
ALLOW
,DENY
. - create
Time String - Time the AuthorizationPolicy was created in UTC.
- description String
- A free-text description of the resource. Max length 1024 characters.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String>
- Set of label tags associated with the AuthorizationPolicy resource.
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. - location String
- The location of the authorization policy.
The default value is
global
. - name String
- Name of the AuthorizationPolicy resource.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- rules List<Property Map>
- List of rules to match. Note that at least one of the rules must match in order for the action specified in the 'action' field to be taken. A rule is a match if there is a matching source and destination. If left blank, the action specified in the action field will be applied on every request. Structure is documented below.
- update
Time String - Time the AuthorizationPolicy was updated in UTC.
Supporting Types
AuthorizationPolicyRule, AuthorizationPolicyRuleArgs
- Destinations
List<Authorization
Policy Rule Destination> - List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- Sources
List<Authorization
Policy Rule Source> - List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
- Destinations
[]Authorization
Policy Rule Destination - List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- Sources
[]Authorization
Policy Rule Source - List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
- destinations
List<Authorization
Policy Rule Destination> - List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- sources
List<Authorization
Policy Rule Source> - List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
- destinations
Authorization
Policy Rule Destination[] - List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- sources
Authorization
Policy Rule Source[] - List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
- destinations
Sequence[Authorization
Policy Rule Destination] - List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- sources
Sequence[Authorization
Policy Rule Source] - List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
- destinations List<Property Map>
- List of attributes for the traffic destination. All of the destinations must match. A destination is a match if a request matches all the specified hosts, ports, methods and headers. If not set, the action specified in the 'action' field will be applied without any rule checks for the destination. Structure is documented below.
- sources List<Property Map>
- List of attributes for the traffic source. All of the sources must match. A source is a match if both principals and ipBlocks match. If not set, the action specified in the 'action' field will be applied without any rule checks for the source. Structure is documented below.
AuthorizationPolicyRuleDestination, AuthorizationPolicyRuleDestinationArgs
- Hosts List<string>
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- Methods List<string>
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- Ports List<int>
- List of destination ports to match. At least one port should match.
- Http
Header AuthorizationMatch Policy Rule Destination Http Header Match - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
- Hosts []string
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- Methods []string
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- Ports []int
- List of destination ports to match. At least one port should match.
- Http
Header AuthorizationMatch Policy Rule Destination Http Header Match - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
- hosts List<String>
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- methods List<String>
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- ports List<Integer>
- List of destination ports to match. At least one port should match.
- http
Header AuthorizationMatch Policy Rule Destination Http Header Match - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
- hosts string[]
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- methods string[]
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- ports number[]
- List of destination ports to match. At least one port should match.
- http
Header AuthorizationMatch Policy Rule Destination Http Header Match - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
- hosts Sequence[str]
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- methods Sequence[str]
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- ports Sequence[int]
- List of destination ports to match. At least one port should match.
- http_
header_ Authorizationmatch Policy Rule Destination Http Header Match - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
- hosts List<String>
- List of host names to match. Matched against the ":authority" header in http requests. At least one host should match. Each host can be an exact match, or a prefix match (example "mydomain.") or a suffix match (example ".myorg.com") or a presence (any) match "*".
- methods List<String>
- A list of HTTP methods to match. At least one method should match. Should not be set for gRPC services.
- ports List<Number>
- List of destination ports to match. At least one port should match.
- http
Header Property MapMatch - Match against key:value pair in http header. Provides a flexible match based on HTTP headers, for potentially advanced use cases. At least one header should match. Avoid using header matches to make authorization decisions unless there is a strong guarantee that requests arrive through a trusted client or proxy. Structure is documented below.
AuthorizationPolicyRuleDestinationHttpHeaderMatch, AuthorizationPolicyRuleDestinationHttpHeaderMatchArgs
- Header
Name string - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- Regex
Match string - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
- Header
Name string - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- Regex
Match string - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
- header
Name String - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- regex
Match String - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
- header
Name string - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- regex
Match string - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
- header_
name str - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- regex_
match str - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
- header
Name String - The name of the HTTP header to match. For matching against the HTTP request's authority, use a headerMatch with the header name ":authority". For matching a request's method, use the headerName ":method".
- regex
Match String - The value of the header must match the regular expression specified in regexMatch. For regular expression grammar, please see: en.cppreference.com/w/cpp/regex/ecmascript For matching against a port specified in the HTTP request, use a headerMatch with headerName set to Host and a regular expression that satisfies the RFC2616 Host header's port specifier.
AuthorizationPolicyRuleSource, AuthorizationPolicyRuleSourceArgs
- Ip
Blocks List<string> - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- Principals List<string>
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
- Ip
Blocks []string - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- Principals []string
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
- ip
Blocks List<String> - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- principals List<String>
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
- ip
Blocks string[] - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- principals string[]
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
- ip_
blocks Sequence[str] - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- principals Sequence[str]
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
- ip
Blocks List<String> - List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., "1.2.3.4") and CIDR (e.g., "1.2.3.0/24") are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
- principals List<String>
- List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, "namespace/") or a suffix match (example, "/service-account") or a presence match "*". Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
Import
AuthorizationPolicy can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/authorizationPolicies/{{name}}
{{project}}/{{location}}/{{name}}
{{location}}/{{name}}
When using the pulumi import
command, AuthorizationPolicy can be imported using one of the formats above. For example:
$ pulumi import gcp:networksecurity/authorizationPolicy:AuthorizationPolicy default projects/{{project}}/locations/{{location}}/authorizationPolicies/{{name}}
$ pulumi import gcp:networksecurity/authorizationPolicy:AuthorizationPolicy default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:networksecurity/authorizationPolicy:AuthorizationPolicy default {{location}}/{{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.