CustomHostnameFallbackOrigin
Provides a Cloudflare custom hostname fallback origin resource.
Example Usage
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
class MyStack : Stack
{
public MyStack()
{
var fallbackOrigin = new Cloudflare.CustomHostnameFallbackOrigin("fallbackOrigin", new Cloudflare.CustomHostnameFallbackOriginArgs
{
Origin = "fallback.example.com",
ZoneId = "d41d8cd98f00b204e9800998ecf8427e",
});
}
}
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v2/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewCustomHostnameFallbackOrigin(ctx, "fallbackOrigin", &cloudflare.CustomHostnameFallbackOriginArgs{
Origin: pulumi.String("fallback.example.com"),
ZoneId: pulumi.String("d41d8cd98f00b204e9800998ecf8427e"),
})
if err != nil {
return err
}
return nil
})
}
import pulumi
import pulumi_cloudflare as cloudflare
fallback_origin = cloudflare.CustomHostnameFallbackOrigin("fallbackOrigin",
origin="fallback.example.com",
zone_id="d41d8cd98f00b204e9800998ecf8427e")
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const fallbackOrigin = new cloudflare.CustomHostnameFallbackOrigin("fallback_origin", {
origin: "fallback.example.com",
zoneId: "d41d8cd98f00b204e9800998ecf8427e",
});
Create a CustomHostnameFallbackOrigin Resource
new CustomHostnameFallbackOrigin(name: string, args: CustomHostnameFallbackOriginArgs, opts?: CustomResourceOptions);
def CustomHostnameFallbackOrigin(resource_name: str, opts: Optional[ResourceOptions] = None, origin: Optional[str] = None, zone_id: Optional[str] = None)
func NewCustomHostnameFallbackOrigin(ctx *Context, name string, args CustomHostnameFallbackOriginArgs, opts ...ResourceOption) (*CustomHostnameFallbackOrigin, error)
public CustomHostnameFallbackOrigin(string name, CustomHostnameFallbackOriginArgs args, CustomResourceOptions? opts = null)
- name string
- The unique name of the resource.
- args CustomHostnameFallbackOriginArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CustomHostnameFallbackOriginArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomHostnameFallbackOriginArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
CustomHostnameFallbackOrigin Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The CustomHostnameFallbackOrigin resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomHostnameFallbackOrigin resource produces the following output properties:
Look up an Existing CustomHostnameFallbackOrigin Resource
Get an existing CustomHostnameFallbackOrigin 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?: CustomHostnameFallbackOriginState, opts?: CustomResourceOptions): CustomHostnameFallbackOrigin
@staticmethod
def get(resource_name: str, id: str, opts: Optional[ResourceOptions] = None, origin: Optional[str] = None, status: Optional[str] = None, zone_id: Optional[str] = None) -> CustomHostnameFallbackOrigin
func GetCustomHostnameFallbackOrigin(ctx *Context, name string, id IDInput, state *CustomHostnameFallbackOriginState, opts ...ResourceOption) (*CustomHostnameFallbackOrigin, error)
public static CustomHostnameFallbackOrigin Get(string name, Input<string> id, CustomHostnameFallbackOriginState? state, CustomResourceOptions? opts = null)
- 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.
The following state arguments are supported:
Import
Custom hostname fallback origins can be imported using a composite ID formed of the zone ID and fallback origin, separated by a “/” e.g.
$ pulumi import cloudflare:index/customHostnameFallbackOrigin:CustomHostnameFallbackOrigin example d41d8cd98f00b204e9800998ecf8427e/fallback.example.com
Package Details
- Repository
- https://github.com/pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.