gcp.compute.BackendServiceSignedUrlKey
Explore with Pulumi AI
A key for signing Cloud CDN signed URLs for Backend Services.
To get more information about BackendServiceSignedUrlKey, see:
- API documentation
- How-to Guides
Warning: All arguments including
key_value
will be stored in the raw state as plain-text.
Example Usage
Backend Service Signed Url Key
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.RandomId;
import com.pulumi.random.RandomIdArgs;
import com.pulumi.gcp.compute.InstanceTemplate;
import com.pulumi.gcp.compute.InstanceTemplateArgs;
import com.pulumi.gcp.compute.inputs.InstanceTemplateNetworkInterfaceArgs;
import com.pulumi.gcp.compute.inputs.InstanceTemplateDiskArgs;
import com.pulumi.gcp.compute.InstanceGroupManager;
import com.pulumi.gcp.compute.InstanceGroupManagerArgs;
import com.pulumi.gcp.compute.inputs.InstanceGroupManagerVersionArgs;
import com.pulumi.gcp.compute.HttpHealthCheck;
import com.pulumi.gcp.compute.HttpHealthCheckArgs;
import com.pulumi.gcp.compute.BackendService;
import com.pulumi.gcp.compute.BackendServiceArgs;
import com.pulumi.gcp.compute.inputs.BackendServiceBackendArgs;
import com.pulumi.gcp.compute.BackendServiceSignedUrlKey;
import com.pulumi.gcp.compute.BackendServiceSignedUrlKeyArgs;
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 urlSignature = new RandomId("urlSignature", RandomIdArgs.builder()
.byteLength(16)
.build());
var webserver = new InstanceTemplate("webserver", InstanceTemplateArgs.builder()
.machineType("e2-medium")
.networkInterfaces(InstanceTemplateNetworkInterfaceArgs.builder()
.network("default")
.build())
.disks(InstanceTemplateDiskArgs.builder()
.sourceImage("debian-cloud/debian-11")
.autoDelete(true)
.boot(true)
.build())
.build());
var webservers = new InstanceGroupManager("webservers", InstanceGroupManagerArgs.builder()
.versions(InstanceGroupManagerVersionArgs.builder()
.instanceTemplate(webserver.id())
.name("primary")
.build())
.baseInstanceName("webserver")
.zone("us-central1-f")
.targetSize(1)
.build());
var default_ = new HttpHealthCheck("default", HttpHealthCheckArgs.builder()
.requestPath("/")
.checkIntervalSec(1)
.timeoutSec(1)
.build());
var exampleBackend = new BackendService("exampleBackend", BackendServiceArgs.builder()
.description("Our company website")
.portName("http")
.protocol("HTTP")
.timeoutSec(10)
.enableCdn(true)
.backends(BackendServiceBackendArgs.builder()
.group(webservers.instanceGroup())
.build())
.healthChecks(default_.id())
.build());
var backendKey = new BackendServiceSignedUrlKey("backendKey", BackendServiceSignedUrlKeyArgs.builder()
.keyValue(urlSignature.b64Url())
.backendService(exampleBackend.name())
.build());
}
}
Coming soon!
Coming soon!
resources:
urlSignature:
type: random:RandomId
properties:
byteLength: 16
backendKey:
type: gcp:compute:BackendServiceSignedUrlKey
properties:
keyValue: ${urlSignature.b64Url}
backendService: ${exampleBackend.name}
exampleBackend:
type: gcp:compute:BackendService
properties:
description: Our company website
portName: http
protocol: HTTP
timeoutSec: 10
enableCdn: true
backends:
- group: ${webservers.instanceGroup}
healthChecks:
- ${default.id}
webservers:
type: gcp:compute:InstanceGroupManager
properties:
versions:
- instanceTemplate: ${webserver.id}
name: primary
baseInstanceName: webserver
zone: us-central1-f
targetSize: 1
webserver:
type: gcp:compute:InstanceTemplate
properties:
machineType: e2-medium
networkInterfaces:
- network: default
disks:
- sourceImage: debian-cloud/debian-11
autoDelete: true
boot: true
default:
type: gcp:compute:HttpHealthCheck
properties:
requestPath: /
checkIntervalSec: 1
timeoutSec: 1
Create BackendServiceSignedUrlKey Resource
new BackendServiceSignedUrlKey(name: string, args: BackendServiceSignedUrlKeyArgs, opts?: CustomResourceOptions);
@overload
def BackendServiceSignedUrlKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
backend_service: Optional[str] = None,
key_value: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None)
@overload
def BackendServiceSignedUrlKey(resource_name: str,
args: BackendServiceSignedUrlKeyArgs,
opts: Optional[ResourceOptions] = None)
func NewBackendServiceSignedUrlKey(ctx *Context, name string, args BackendServiceSignedUrlKeyArgs, opts ...ResourceOption) (*BackendServiceSignedUrlKey, error)
public BackendServiceSignedUrlKey(string name, BackendServiceSignedUrlKeyArgs args, CustomResourceOptions? opts = null)
public BackendServiceSignedUrlKey(String name, BackendServiceSignedUrlKeyArgs args)
public BackendServiceSignedUrlKey(String name, BackendServiceSignedUrlKeyArgs args, CustomResourceOptions options)
type: gcp:compute:BackendServiceSignedUrlKey
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackendServiceSignedUrlKeyArgs
- 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 BackendServiceSignedUrlKeyArgs
- 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 BackendServiceSignedUrlKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BackendServiceSignedUrlKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BackendServiceSignedUrlKeyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
BackendServiceSignedUrlKey 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 BackendServiceSignedUrlKey resource accepts the following input properties:
- Backend
Service string The backend service this signed URL key belongs.
- Key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- Name string
Name of the signed URL key.
- Project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Backend
Service string The backend service this signed URL key belongs.
- Key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- Name string
Name of the signed URL key.
- Project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service String The backend service this signed URL key belongs.
- key
Value String 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name String
Name of the signed URL key.
- project String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service string The backend service this signed URL key belongs.
- key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name string
Name of the signed URL key.
- project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend_
service str The backend service this signed URL key belongs.
- key_
value str 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name str
Name of the signed URL key.
- project str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service String The backend service this signed URL key belongs.
- key
Value String 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name String
Name of the signed URL key.
- project String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the BackendServiceSignedUrlKey resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Id string
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
- id string
The provider-assigned unique ID for this managed resource.
- id str
The provider-assigned unique ID for this managed resource.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing BackendServiceSignedUrlKey Resource
Get an existing BackendServiceSignedUrlKey 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?: BackendServiceSignedUrlKeyState, opts?: CustomResourceOptions): BackendServiceSignedUrlKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
backend_service: Optional[str] = None,
key_value: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None) -> BackendServiceSignedUrlKey
func GetBackendServiceSignedUrlKey(ctx *Context, name string, id IDInput, state *BackendServiceSignedUrlKeyState, opts ...ResourceOption) (*BackendServiceSignedUrlKey, error)
public static BackendServiceSignedUrlKey Get(string name, Input<string> id, BackendServiceSignedUrlKeyState? state, CustomResourceOptions? opts = null)
public static BackendServiceSignedUrlKey get(String name, Output<String> id, BackendServiceSignedUrlKeyState 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.
- Backend
Service string The backend service this signed URL key belongs.
- Key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- Name string
Name of the signed URL key.
- Project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Backend
Service string The backend service this signed URL key belongs.
- Key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- Name string
Name of the signed URL key.
- Project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service String The backend service this signed URL key belongs.
- key
Value String 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name String
Name of the signed URL key.
- project String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service string The backend service this signed URL key belongs.
- key
Value string 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name string
Name of the signed URL key.
- project string
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend_
service str The backend service this signed URL key belongs.
- key_
value str 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name str
Name of the signed URL key.
- project str
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- backend
Service String The backend service this signed URL key belongs.
- key
Value String 128-bit key value used for signing the URL. The key value must be a valid RFC 4648 Section 5 base64url encoded string. Note: This property is sensitive and will not be displayed in the plan.
- name String
Name of the signed URL key.
- project String
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Import
This resource does not support import.
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.