cloudflare.AuthenticatedOriginPulls
Explore with Pulumi AI
Provides a Cloudflare Authenticated Origin Pulls resource. A cloudflare.AuthenticatedOriginPulls
resource is required to use Per-Zone or Per-Hostname Authenticated
Origin Pulls.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
// Authenticated Origin Pulls
const myAop = new cloudflare.AuthenticatedOriginPulls("my_aop", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
enabled: true,
});
// Per-Zone Authenticated Origin Pulls
const myPerZoneAopCert = new cloudflare.AuthenticatedOriginPullsCertificate("my_per_zone_aop_cert", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
certificate: "-----INSERT CERTIFICATE-----",
privateKey: "-----INSERT PRIVATE KEY-----",
type: "per-zone",
});
const myPerZoneAop = new cloudflare.AuthenticatedOriginPulls("my_per_zone_aop", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
authenticatedOriginPullsCertificate: myPerZoneAopCert.id,
enabled: true,
});
// Per-Hostname Authenticated Origin Pulls
const myPerHostnameAopCert = new cloudflare.AuthenticatedOriginPullsCertificate("my_per_hostname_aop_cert", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
certificate: "-----INSERT CERTIFICATE-----",
privateKey: "-----INSERT PRIVATE KEY-----",
type: "per-hostname",
});
const myPerHostnameAop = new cloudflare.AuthenticatedOriginPulls("my_per_hostname_aop", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
authenticatedOriginPullsCertificate: myPerHostnameAopCert.id,
hostname: "aop.example.com",
enabled: true,
});
import pulumi
import pulumi_cloudflare as cloudflare
# Authenticated Origin Pulls
my_aop = cloudflare.AuthenticatedOriginPulls("my_aop",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
enabled=True)
# Per-Zone Authenticated Origin Pulls
my_per_zone_aop_cert = cloudflare.AuthenticatedOriginPullsCertificate("my_per_zone_aop_cert",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
certificate="-----INSERT CERTIFICATE-----",
private_key="-----INSERT PRIVATE KEY-----",
type="per-zone")
my_per_zone_aop = cloudflare.AuthenticatedOriginPulls("my_per_zone_aop",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
authenticated_origin_pulls_certificate=my_per_zone_aop_cert.id,
enabled=True)
# Per-Hostname Authenticated Origin Pulls
my_per_hostname_aop_cert = cloudflare.AuthenticatedOriginPullsCertificate("my_per_hostname_aop_cert",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
certificate="-----INSERT CERTIFICATE-----",
private_key="-----INSERT PRIVATE KEY-----",
type="per-hostname")
my_per_hostname_aop = cloudflare.AuthenticatedOriginPulls("my_per_hostname_aop",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
authenticated_origin_pulls_certificate=my_per_hostname_aop_cert.id,
hostname="aop.example.com",
enabled=True)
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Authenticated Origin Pulls
_, err := cloudflare.NewAuthenticatedOriginPulls(ctx, "my_aop", &cloudflare.AuthenticatedOriginPullsArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
// Per-Zone Authenticated Origin Pulls
myPerZoneAopCert, err := cloudflare.NewAuthenticatedOriginPullsCertificate(ctx, "my_per_zone_aop_cert", &cloudflare.AuthenticatedOriginPullsCertificateArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
Certificate: pulumi.String("-----INSERT CERTIFICATE-----"),
PrivateKey: pulumi.String("-----INSERT PRIVATE KEY-----"),
Type: pulumi.String("per-zone"),
})
if err != nil {
return err
}
_, err = cloudflare.NewAuthenticatedOriginPulls(ctx, "my_per_zone_aop", &cloudflare.AuthenticatedOriginPullsArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
AuthenticatedOriginPullsCertificate: myPerZoneAopCert.ID(),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
// Per-Hostname Authenticated Origin Pulls
myPerHostnameAopCert, err := cloudflare.NewAuthenticatedOriginPullsCertificate(ctx, "my_per_hostname_aop_cert", &cloudflare.AuthenticatedOriginPullsCertificateArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
Certificate: pulumi.String("-----INSERT CERTIFICATE-----"),
PrivateKey: pulumi.String("-----INSERT PRIVATE KEY-----"),
Type: pulumi.String("per-hostname"),
})
if err != nil {
return err
}
_, err = cloudflare.NewAuthenticatedOriginPulls(ctx, "my_per_hostname_aop", &cloudflare.AuthenticatedOriginPullsArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
AuthenticatedOriginPullsCertificate: myPerHostnameAopCert.ID(),
Hostname: pulumi.String("aop.example.com"),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
// Authenticated Origin Pulls
var myAop = new Cloudflare.AuthenticatedOriginPulls("my_aop", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
Enabled = true,
});
// Per-Zone Authenticated Origin Pulls
var myPerZoneAopCert = new Cloudflare.AuthenticatedOriginPullsCertificate("my_per_zone_aop_cert", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
Certificate = "-----INSERT CERTIFICATE-----",
PrivateKey = "-----INSERT PRIVATE KEY-----",
Type = "per-zone",
});
var myPerZoneAop = new Cloudflare.AuthenticatedOriginPulls("my_per_zone_aop", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
AuthenticatedOriginPullsCertificate = myPerZoneAopCert.Id,
Enabled = true,
});
// Per-Hostname Authenticated Origin Pulls
var myPerHostnameAopCert = new Cloudflare.AuthenticatedOriginPullsCertificate("my_per_hostname_aop_cert", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
Certificate = "-----INSERT CERTIFICATE-----",
PrivateKey = "-----INSERT PRIVATE KEY-----",
Type = "per-hostname",
});
var myPerHostnameAop = new Cloudflare.AuthenticatedOriginPulls("my_per_hostname_aop", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
AuthenticatedOriginPullsCertificate = myPerHostnameAopCert.Id,
Hostname = "aop.example.com",
Enabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.AuthenticatedOriginPulls;
import com.pulumi.cloudflare.AuthenticatedOriginPullsArgs;
import com.pulumi.cloudflare.AuthenticatedOriginPullsCertificate;
import com.pulumi.cloudflare.AuthenticatedOriginPullsCertificateArgs;
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) {
// Authenticated Origin Pulls
var myAop = new AuthenticatedOriginPulls("myAop", AuthenticatedOriginPullsArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.enabled(true)
.build());
// Per-Zone Authenticated Origin Pulls
var myPerZoneAopCert = new AuthenticatedOriginPullsCertificate("myPerZoneAopCert", AuthenticatedOriginPullsCertificateArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.certificate("-----INSERT CERTIFICATE-----")
.privateKey("-----INSERT PRIVATE KEY-----")
.type("per-zone")
.build());
var myPerZoneAop = new AuthenticatedOriginPulls("myPerZoneAop", AuthenticatedOriginPullsArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.authenticatedOriginPullsCertificate(myPerZoneAopCert.id())
.enabled(true)
.build());
// Per-Hostname Authenticated Origin Pulls
var myPerHostnameAopCert = new AuthenticatedOriginPullsCertificate("myPerHostnameAopCert", AuthenticatedOriginPullsCertificateArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.certificate("-----INSERT CERTIFICATE-----")
.privateKey("-----INSERT PRIVATE KEY-----")
.type("per-hostname")
.build());
var myPerHostnameAop = new AuthenticatedOriginPulls("myPerHostnameAop", AuthenticatedOriginPullsArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.authenticatedOriginPullsCertificate(myPerHostnameAopCert.id())
.hostname("aop.example.com")
.enabled(true)
.build());
}
}
resources:
# Authenticated Origin Pulls
myAop:
type: cloudflare:AuthenticatedOriginPulls
name: my_aop
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
enabled: true
# Per-Zone Authenticated Origin Pulls
myPerZoneAopCert:
type: cloudflare:AuthenticatedOriginPullsCertificate
name: my_per_zone_aop_cert
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
certificate: '-----INSERT CERTIFICATE-----'
privateKey: '-----INSERT PRIVATE KEY-----'
type: per-zone
myPerZoneAop:
type: cloudflare:AuthenticatedOriginPulls
name: my_per_zone_aop
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
authenticatedOriginPullsCertificate: ${myPerZoneAopCert.id}
enabled: true
# Per-Hostname Authenticated Origin Pulls
myPerHostnameAopCert:
type: cloudflare:AuthenticatedOriginPullsCertificate
name: my_per_hostname_aop_cert
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
certificate: '-----INSERT CERTIFICATE-----'
privateKey: '-----INSERT PRIVATE KEY-----'
type: per-hostname
myPerHostnameAop:
type: cloudflare:AuthenticatedOriginPulls
name: my_per_hostname_aop
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
authenticatedOriginPullsCertificate: ${myPerHostnameAopCert.id}
hostname: aop.example.com
enabled: true
Create AuthenticatedOriginPulls Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticatedOriginPulls(name: string, args: AuthenticatedOriginPullsArgs, opts?: CustomResourceOptions);
@overload
def AuthenticatedOriginPulls(resource_name: str,
args: AuthenticatedOriginPullsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticatedOriginPulls(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
zone_id: Optional[str] = None,
authenticated_origin_pulls_certificate: Optional[str] = None,
hostname: Optional[str] = None)
func NewAuthenticatedOriginPulls(ctx *Context, name string, args AuthenticatedOriginPullsArgs, opts ...ResourceOption) (*AuthenticatedOriginPulls, error)
public AuthenticatedOriginPulls(string name, AuthenticatedOriginPullsArgs args, CustomResourceOptions? opts = null)
public AuthenticatedOriginPulls(String name, AuthenticatedOriginPullsArgs args)
public AuthenticatedOriginPulls(String name, AuthenticatedOriginPullsArgs args, CustomResourceOptions options)
type: cloudflare:AuthenticatedOriginPulls
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 AuthenticatedOriginPullsArgs
- 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 AuthenticatedOriginPullsArgs
- 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 AuthenticatedOriginPullsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticatedOriginPullsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticatedOriginPullsArgs
- 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 authenticatedOriginPullsResource = new Cloudflare.AuthenticatedOriginPulls("authenticatedOriginPullsResource", new()
{
Enabled = false,
ZoneId = "string",
AuthenticatedOriginPullsCertificate = "string",
Hostname = "string",
});
example, err := cloudflare.NewAuthenticatedOriginPulls(ctx, "authenticatedOriginPullsResource", &cloudflare.AuthenticatedOriginPullsArgs{
Enabled: pulumi.Bool(false),
ZoneId: pulumi.String("string"),
AuthenticatedOriginPullsCertificate: pulumi.String("string"),
Hostname: pulumi.String("string"),
})
var authenticatedOriginPullsResource = new AuthenticatedOriginPulls("authenticatedOriginPullsResource", AuthenticatedOriginPullsArgs.builder()
.enabled(false)
.zoneId("string")
.authenticatedOriginPullsCertificate("string")
.hostname("string")
.build());
authenticated_origin_pulls_resource = cloudflare.AuthenticatedOriginPulls("authenticatedOriginPullsResource",
enabled=False,
zone_id="string",
authenticated_origin_pulls_certificate="string",
hostname="string")
const authenticatedOriginPullsResource = new cloudflare.AuthenticatedOriginPulls("authenticatedOriginPullsResource", {
enabled: false,
zoneId: "string",
authenticatedOriginPullsCertificate: "string",
hostname: "string",
});
type: cloudflare:AuthenticatedOriginPulls
properties:
authenticatedOriginPullsCertificate: string
enabled: false
hostname: string
zoneId: string
AuthenticatedOriginPulls 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 AuthenticatedOriginPulls resource accepts the following input properties:
- Enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- Zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- Hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- Enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- Zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- Hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- enabled Boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- zone
Id String - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin StringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- hostname String
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- enabled boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- zone_
id str - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated_
origin_ strpulls_ certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- hostname str
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- enabled Boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- zone
Id String - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin StringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- hostname String
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticatedOriginPulls 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 AuthenticatedOriginPulls Resource
Get an existing AuthenticatedOriginPulls 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?: AuthenticatedOriginPullsState, opts?: CustomResourceOptions): AuthenticatedOriginPulls
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authenticated_origin_pulls_certificate: Optional[str] = None,
enabled: Optional[bool] = None,
hostname: Optional[str] = None,
zone_id: Optional[str] = None) -> AuthenticatedOriginPulls
func GetAuthenticatedOriginPulls(ctx *Context, name string, id IDInput, state *AuthenticatedOriginPullsState, opts ...ResourceOption) (*AuthenticatedOriginPulls, error)
public static AuthenticatedOriginPulls Get(string name, Input<string> id, AuthenticatedOriginPullsState? state, CustomResourceOptions? opts = null)
public static AuthenticatedOriginPulls get(String name, Output<String> id, AuthenticatedOriginPullsState 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.
- Authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- Enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- Hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- Zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- Enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- Hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- Zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin StringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- enabled Boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- hostname String
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- zone
Id String - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin stringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- enabled boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- hostname string
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- zone
Id string - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated_
origin_ strpulls_ certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- enabled bool
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- hostname str
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- zone_
id str - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- authenticated
Origin StringPulls Certificate - The ID of an uploaded Authenticated Origin Pulls certificate. If no hostname is provided, this certificate will be used zone wide as Per-Zone Authenticated Origin Pulls.
- enabled Boolean
- Whether to enable Authenticated Origin Pulls on the given zone or hostname.
- hostname String
- Specify a hostname to enable Per-Hostname Authenticated Origin Pulls on, using the provided certificate.
- zone
Id String - The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
Import
global
$ pulumi import cloudflare:index/authenticatedOriginPulls:AuthenticatedOriginPulls example <zone_id>
per zone
$ pulumi import cloudflare:index/authenticatedOriginPulls:AuthenticatedOriginPulls example <zone_id>/<certificate_id>
per hostname
$ pulumi import cloudflare:index/authenticatedOriginPulls:AuthenticatedOriginPulls example <zone_id>/<certificate_id>/<hostname>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.