gcp.beyondcorp.Application
Explore with Pulumi AI
Specifies application endpoint(s) to protect behind a Security Gateway.
Example Usage
Beyondcorp Security Gateway Application Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.beyondcorp.SecurityGateway("default", {
securityGatewayId: "default",
displayName: "My Security Gateway resource",
hubs: [{
region: "us-central1",
}],
});
const example = new gcp.beyondcorp.Application("example", {
securityGatewaysId: _default.securityGatewayId,
applicationId: "google",
endpointMatchers: [{
hostname: "google.com",
}],
});
import pulumi
import pulumi_gcp as gcp
default = gcp.beyondcorp.SecurityGateway("default",
security_gateway_id="default",
display_name="My Security Gateway resource",
hubs=[{
"region": "us-central1",
}])
example = gcp.beyondcorp.Application("example",
security_gateways_id=default.security_gateway_id,
application_id="google",
endpoint_matchers=[{
"hostname": "google.com",
}])
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/beyondcorp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := beyondcorp.NewSecurityGateway(ctx, "default", &beyondcorp.SecurityGatewayArgs{
SecurityGatewayId: pulumi.String("default"),
DisplayName: pulumi.String("My Security Gateway resource"),
Hubs: beyondcorp.SecurityGatewayHubArray{
&beyondcorp.SecurityGatewayHubArgs{
Region: pulumi.String("us-central1"),
},
},
})
if err != nil {
return err
}
_, err = beyondcorp.NewApplication(ctx, "example", &beyondcorp.ApplicationArgs{
SecurityGatewaysId: _default.SecurityGatewayId,
ApplicationId: pulumi.String("google"),
EndpointMatchers: beyondcorp.ApplicationEndpointMatcherArray{
&beyondcorp.ApplicationEndpointMatcherArgs{
Hostname: pulumi.String("google.com"),
},
},
})
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.Beyondcorp.SecurityGateway("default", new()
{
SecurityGatewayId = "default",
DisplayName = "My Security Gateway resource",
Hubs = new[]
{
new Gcp.Beyondcorp.Inputs.SecurityGatewayHubArgs
{
Region = "us-central1",
},
},
});
var example = new Gcp.Beyondcorp.Application("example", new()
{
SecurityGatewaysId = @default.SecurityGatewayId,
ApplicationId = "google",
EndpointMatchers = new[]
{
new Gcp.Beyondcorp.Inputs.ApplicationEndpointMatcherArgs
{
Hostname = "google.com",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.beyondcorp.SecurityGateway;
import com.pulumi.gcp.beyondcorp.SecurityGatewayArgs;
import com.pulumi.gcp.beyondcorp.inputs.SecurityGatewayHubArgs;
import com.pulumi.gcp.beyondcorp.Application;
import com.pulumi.gcp.beyondcorp.ApplicationArgs;
import com.pulumi.gcp.beyondcorp.inputs.ApplicationEndpointMatcherArgs;
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 SecurityGateway("default", SecurityGatewayArgs.builder()
.securityGatewayId("default")
.displayName("My Security Gateway resource")
.hubs(SecurityGatewayHubArgs.builder()
.region("us-central1")
.build())
.build());
var example = new Application("example", ApplicationArgs.builder()
.securityGatewaysId(default_.securityGatewayId())
.applicationId("google")
.endpointMatchers(ApplicationEndpointMatcherArgs.builder()
.hostname("google.com")
.build())
.build());
}
}
resources:
default:
type: gcp:beyondcorp:SecurityGateway
properties:
securityGatewayId: default
displayName: My Security Gateway resource
hubs:
- region: us-central1
example:
type: gcp:beyondcorp:Application
properties:
securityGatewaysId: ${default.securityGatewayId}
applicationId: google
endpointMatchers:
- hostname: google.com
Create Application Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
@overload
def Application(resource_name: str,
args: ApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Application(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
endpoint_matchers: Optional[Sequence[ApplicationEndpointMatcherArgs]] = None,
security_gateways_id: Optional[str] = None,
display_name: Optional[str] = None,
project: Optional[str] = None)
func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: gcp:beyondcorp:Application
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 ApplicationArgs
- 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 ApplicationArgs
- 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 ApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationArgs
- 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 exampleapplicationResourceResourceFromBeyondcorpapplication = new Gcp.Beyondcorp.Application("exampleapplicationResourceResourceFromBeyondcorpapplication", new()
{
ApplicationId = "string",
EndpointMatchers = new[]
{
new Gcp.Beyondcorp.Inputs.ApplicationEndpointMatcherArgs
{
Hostname = "string",
Ports = new[]
{
0,
},
},
},
SecurityGatewaysId = "string",
DisplayName = "string",
Project = "string",
});
example, err := beyondcorp.NewApplication(ctx, "exampleapplicationResourceResourceFromBeyondcorpapplication", &beyondcorp.ApplicationArgs{
ApplicationId: pulumi.String("string"),
EndpointMatchers: beyondcorp.ApplicationEndpointMatcherArray{
&beyondcorp.ApplicationEndpointMatcherArgs{
Hostname: pulumi.String("string"),
Ports: pulumi.IntArray{
pulumi.Int(0),
},
},
},
SecurityGatewaysId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Project: pulumi.String("string"),
})
var exampleapplicationResourceResourceFromBeyondcorpapplication = new Application("exampleapplicationResourceResourceFromBeyondcorpapplication", ApplicationArgs.builder()
.applicationId("string")
.endpointMatchers(ApplicationEndpointMatcherArgs.builder()
.hostname("string")
.ports(0)
.build())
.securityGatewaysId("string")
.displayName("string")
.project("string")
.build());
exampleapplication_resource_resource_from_beyondcorpapplication = gcp.beyondcorp.Application("exampleapplicationResourceResourceFromBeyondcorpapplication",
application_id="string",
endpoint_matchers=[{
"hostname": "string",
"ports": [0],
}],
security_gateways_id="string",
display_name="string",
project="string")
const exampleapplicationResourceResourceFromBeyondcorpapplication = new gcp.beyondcorp.Application("exampleapplicationResourceResourceFromBeyondcorpapplication", {
applicationId: "string",
endpointMatchers: [{
hostname: "string",
ports: [0],
}],
securityGatewaysId: "string",
displayName: "string",
project: "string",
});
type: gcp:beyondcorp:Application
properties:
applicationId: string
displayName: string
endpointMatchers:
- hostname: string
ports:
- 0
project: string
securityGatewaysId: string
Application Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Application resource accepts the following input properties:
- Application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- Endpoint
Matchers List<ApplicationEndpoint Matcher> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- Security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - Display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- Project string
- Application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- Endpoint
Matchers []ApplicationEndpoint Matcher Args - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- Security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - Display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- Project string
- application
Id String - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- endpoint
Matchers List<ApplicationEndpoint Matcher> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- security
Gateways StringId - Part of
parent
. See documentation ofprojectsId
. - display
Name String - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- project String
- application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- endpoint
Matchers ApplicationEndpoint Matcher[] - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- project string
- application_
id str - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- endpoint_
matchers Sequence[ApplicationEndpoint Matcher Args] - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- security_
gateways_ strid - Part of
parent
. See documentation ofprojectsId
. - display_
name str - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- project str
- application
Id String - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- endpoint
Matchers List<Property Map> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- security
Gateways StringId - Part of
parent
. See documentation ofprojectsId
. - display
Name String - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:
- Create
Time string - Output only. Timestamp when the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. Name of the resource.
- Update
Time string - Output only. Timestamp when the resource was last modified.
- Create
Time string - Output only. Timestamp when the resource was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Identifier. Name of the resource.
- Update
Time string - Output only. Timestamp when the resource was last modified.
- create
Time String - Output only. Timestamp when the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. Name of the resource.
- update
Time String - Output only. Timestamp when the resource was last modified.
- create
Time string - Output only. Timestamp when the resource was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Identifier. Name of the resource.
- update
Time string - Output only. Timestamp when the resource was last modified.
- create_
time str - Output only. Timestamp when the resource was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Identifier. Name of the resource.
- update_
time str - Output only. Timestamp when the resource was last modified.
- create
Time String - Output only. Timestamp when the resource was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Identifier. Name of the resource.
- update
Time String - Output only. Timestamp when the resource was last modified.
Look up Existing Application Resource
Get an existing Application 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?: ApplicationState, opts?: CustomResourceOptions): Application
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
create_time: Optional[str] = None,
display_name: Optional[str] = None,
endpoint_matchers: Optional[Sequence[ApplicationEndpointMatcherArgs]] = None,
name: Optional[str] = None,
project: Optional[str] = None,
security_gateways_id: Optional[str] = None,
update_time: Optional[str] = None) -> Application
func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
resources: _: type: gcp:beyondcorp:Application get: id: ${id}
- 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.
- Application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- Create
Time string - Output only. Timestamp when the resource was created.
- Display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- Endpoint
Matchers List<ApplicationEndpoint Matcher> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- Name string
- Identifier. Name of the resource.
- Project string
- Security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - Update
Time string - Output only. Timestamp when the resource was last modified.
- Application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- Create
Time string - Output only. Timestamp when the resource was created.
- Display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- Endpoint
Matchers []ApplicationEndpoint Matcher Args - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- Name string
- Identifier. Name of the resource.
- Project string
- Security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - Update
Time string - Output only. Timestamp when the resource was last modified.
- application
Id String - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- create
Time String - Output only. Timestamp when the resource was created.
- display
Name String - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- endpoint
Matchers List<ApplicationEndpoint Matcher> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- name String
- Identifier. Name of the resource.
- project String
- security
Gateways StringId - Part of
parent
. See documentation ofprojectsId
. - update
Time String - Output only. Timestamp when the resource was last modified.
- application
Id string - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- create
Time string - Output only. Timestamp when the resource was created.
- display
Name string - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- endpoint
Matchers ApplicationEndpoint Matcher[] - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- name string
- Identifier. Name of the resource.
- project string
- security
Gateways stringId - Part of
parent
. See documentation ofprojectsId
. - update
Time string - Output only. Timestamp when the resource was last modified.
- application_
id str - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- create_
time str - Output only. Timestamp when the resource was created.
- display_
name str - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- endpoint_
matchers Sequence[ApplicationEndpoint Matcher Args] - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- name str
- Identifier. Name of the resource.
- project str
- security_
gateways_ strid - Part of
parent
. See documentation ofprojectsId
. - update_
time str - Output only. Timestamp when the resource was last modified.
- application
Id String - Optional. User-settable Application resource ID.
- Must start with a letter.
- Must contain between 4-63 characters from
/a-z-/
. - Must end with a number or letter.
- create
Time String - Output only. Timestamp when the resource was created.
- display
Name String - Optional. An arbitrary user-provided name for the Application resource. Cannot exceed 64 characters.
- endpoint
Matchers List<Property Map> - Required. Endpoint matchers associated with an application. A combination of hostname and ports as endpoint matcher is used to match the application. Match conditions for OR logic. An array of match conditions to allow for multiple matching criteria. The rule is considered a match if one the conditions are met. The conditions can be one of the following combination (Hostname), (Hostname & Ports) EXAMPLES: Hostname - ("*.abc.com"), ("xyz.abc.com") Hostname and Ports - ("abc.com" and "22"), ("abc.com" and "22,33") etc Structure is documented below.
- name String
- Identifier. Name of the resource.
- project String
- security
Gateways StringId - Part of
parent
. See documentation ofprojectsId
. - update
Time String - Output only. Timestamp when the resource was last modified.
Supporting Types
ApplicationEndpointMatcher, ApplicationEndpointMatcherArgs
Import
Application can be imported using any of these accepted formats:
projects/{{project}}/locations/global/securityGateways/{{security_gateways_id}}/applications/{{application_id}}
{{project}}/{{security_gateways_id}}/{{application_id}}
{{security_gateways_id}}/{{application_id}}
When using the pulumi import
command, Application can be imported using one of the formats above. For example:
$ pulumi import gcp:beyondcorp/application:Application default projects/{{project}}/locations/global/securityGateways/{{security_gateways_id}}/applications/{{application_id}}
$ pulumi import gcp:beyondcorp/application:Application default {{project}}/{{security_gateways_id}}/{{application_id}}
$ pulumi import gcp:beyondcorp/application:Application default {{security_gateways_id}}/{{application_id}}
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.