cloudflare.HyperdriveConfig
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
exampleHyperdriveConfig:
type: cloudflare:HyperdriveConfig
name: example_hyperdrive_config
properties:
accountId: 023e105f4ecef8ad9ca31a8372d0c353
name: example-hyperdrive
origin:
database: postgres
host: database.example.com
password: password
port: 5432
scheme: postgres
user: postgres
caching:
disabled: true
mtls:
ca_certificate_id: 00000000-0000-0000-0000-0000000000
mtls_certificate_id: 00000000-0000-0000-0000-0000000000
sslmode: verify-full
Create HyperdriveConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HyperdriveConfig(name: string, args: HyperdriveConfigArgs, opts?: CustomResourceOptions);
@overload
def HyperdriveConfig(resource_name: str,
args: HyperdriveConfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HyperdriveConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
name: Optional[str] = None,
origin: Optional[HyperdriveConfigOriginArgs] = None,
caching: Optional[HyperdriveConfigCachingArgs] = None,
mtls: Optional[HyperdriveConfigMtlsArgs] = None)
func NewHyperdriveConfig(ctx *Context, name string, args HyperdriveConfigArgs, opts ...ResourceOption) (*HyperdriveConfig, error)
public HyperdriveConfig(string name, HyperdriveConfigArgs args, CustomResourceOptions? opts = null)
public HyperdriveConfig(String name, HyperdriveConfigArgs args)
public HyperdriveConfig(String name, HyperdriveConfigArgs args, CustomResourceOptions options)
type: cloudflare:HyperdriveConfig
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 HyperdriveConfigArgs
- 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 HyperdriveConfigArgs
- 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 HyperdriveConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HyperdriveConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HyperdriveConfigArgs
- 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 hyperdriveConfigResource = new Cloudflare.HyperdriveConfig("hyperdriveConfigResource", new()
{
AccountId = "string",
Name = "string",
Origin = new Cloudflare.Inputs.HyperdriveConfigOriginArgs
{
Database = "string",
Host = "string",
Password = "string",
Scheme = "string",
User = "string",
AccessClientId = "string",
AccessClientSecret = "string",
Port = 0,
},
Caching = new Cloudflare.Inputs.HyperdriveConfigCachingArgs
{
Disabled = false,
MaxAge = 0,
StaleWhileRevalidate = 0,
},
Mtls = new Cloudflare.Inputs.HyperdriveConfigMtlsArgs
{
CaCertificateId = "string",
MtlsCertificateId = "string",
Sslmode = "string",
},
});
example, err := cloudflare.NewHyperdriveConfig(ctx, "hyperdriveConfigResource", &cloudflare.HyperdriveConfigArgs{
AccountId: pulumi.String("string"),
Name: pulumi.String("string"),
Origin: &cloudflare.HyperdriveConfigOriginArgs{
Database: pulumi.String("string"),
Host: pulumi.String("string"),
Password: pulumi.String("string"),
Scheme: pulumi.String("string"),
User: pulumi.String("string"),
AccessClientId: pulumi.String("string"),
AccessClientSecret: pulumi.String("string"),
Port: pulumi.Int(0),
},
Caching: &cloudflare.HyperdriveConfigCachingArgs{
Disabled: pulumi.Bool(false),
MaxAge: pulumi.Int(0),
StaleWhileRevalidate: pulumi.Int(0),
},
Mtls: &cloudflare.HyperdriveConfigMtlsArgs{
CaCertificateId: pulumi.String("string"),
MtlsCertificateId: pulumi.String("string"),
Sslmode: pulumi.String("string"),
},
})
var hyperdriveConfigResource = new HyperdriveConfig("hyperdriveConfigResource", HyperdriveConfigArgs.builder()
.accountId("string")
.name("string")
.origin(HyperdriveConfigOriginArgs.builder()
.database("string")
.host("string")
.password("string")
.scheme("string")
.user("string")
.accessClientId("string")
.accessClientSecret("string")
.port(0)
.build())
.caching(HyperdriveConfigCachingArgs.builder()
.disabled(false)
.maxAge(0)
.staleWhileRevalidate(0)
.build())
.mtls(HyperdriveConfigMtlsArgs.builder()
.caCertificateId("string")
.mtlsCertificateId("string")
.sslmode("string")
.build())
.build());
hyperdrive_config_resource = cloudflare.HyperdriveConfig("hyperdriveConfigResource",
account_id="string",
name="string",
origin={
"database": "string",
"host": "string",
"password": "string",
"scheme": "string",
"user": "string",
"access_client_id": "string",
"access_client_secret": "string",
"port": 0,
},
caching={
"disabled": False,
"max_age": 0,
"stale_while_revalidate": 0,
},
mtls={
"ca_certificate_id": "string",
"mtls_certificate_id": "string",
"sslmode": "string",
})
const hyperdriveConfigResource = new cloudflare.HyperdriveConfig("hyperdriveConfigResource", {
accountId: "string",
name: "string",
origin: {
database: "string",
host: "string",
password: "string",
scheme: "string",
user: "string",
accessClientId: "string",
accessClientSecret: "string",
port: 0,
},
caching: {
disabled: false,
maxAge: 0,
staleWhileRevalidate: 0,
},
mtls: {
caCertificateId: "string",
mtlsCertificateId: "string",
sslmode: "string",
},
});
type: cloudflare:HyperdriveConfig
properties:
accountId: string
caching:
disabled: false
maxAge: 0
staleWhileRevalidate: 0
mtls:
caCertificateId: string
mtlsCertificateId: string
sslmode: string
name: string
origin:
accessClientId: string
accessClientSecret: string
database: string
host: string
password: string
port: 0
scheme: string
user: string
HyperdriveConfig 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 HyperdriveConfig resource accepts the following input properties:
- Account
Id string - Identifier
- Name string
- Origin
Hyperdrive
Config Origin - Caching
Hyperdrive
Config Caching - Mtls
Hyperdrive
Config Mtls
- Account
Id string - Identifier
- Name string
- Origin
Hyperdrive
Config Origin Args - Caching
Hyperdrive
Config Caching Args - Mtls
Hyperdrive
Config Mtls Args
- account
Id String - Identifier
- name String
- origin
Hyperdrive
Config Origin - caching
Hyperdrive
Config Caching - mtls
Hyperdrive
Config Mtls
- account
Id string - Identifier
- name string
- origin
Hyperdrive
Config Origin - caching
Hyperdrive
Config Caching - mtls
Hyperdrive
Config Mtls
- account
Id String - Identifier
- name String
- origin Property Map
- caching Property Map
- mtls Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the HyperdriveConfig resource produces the following output properties:
- Created
On string - When the Hyperdrive configuration was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
On string - When the Hyperdrive configuration was last modified.
- Created
On string - When the Hyperdrive configuration was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Modified
On string - When the Hyperdrive configuration was last modified.
- created
On String - When the Hyperdrive configuration was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
On String - When the Hyperdrive configuration was last modified.
- created
On string - When the Hyperdrive configuration was created.
- id string
- The provider-assigned unique ID for this managed resource.
- modified
On string - When the Hyperdrive configuration was last modified.
- created_
on str - When the Hyperdrive configuration was created.
- id str
- The provider-assigned unique ID for this managed resource.
- modified_
on str - When the Hyperdrive configuration was last modified.
- created
On String - When the Hyperdrive configuration was created.
- id String
- The provider-assigned unique ID for this managed resource.
- modified
On String - When the Hyperdrive configuration was last modified.
Look up Existing HyperdriveConfig Resource
Get an existing HyperdriveConfig 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?: HyperdriveConfigState, opts?: CustomResourceOptions): HyperdriveConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
caching: Optional[HyperdriveConfigCachingArgs] = None,
created_on: Optional[str] = None,
modified_on: Optional[str] = None,
mtls: Optional[HyperdriveConfigMtlsArgs] = None,
name: Optional[str] = None,
origin: Optional[HyperdriveConfigOriginArgs] = None) -> HyperdriveConfig
func GetHyperdriveConfig(ctx *Context, name string, id IDInput, state *HyperdriveConfigState, opts ...ResourceOption) (*HyperdriveConfig, error)
public static HyperdriveConfig Get(string name, Input<string> id, HyperdriveConfigState? state, CustomResourceOptions? opts = null)
public static HyperdriveConfig get(String name, Output<String> id, HyperdriveConfigState state, CustomResourceOptions options)
resources: _: type: cloudflare:HyperdriveConfig 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.
- Account
Id string - Identifier
- Caching
Hyperdrive
Config Caching - Created
On string - When the Hyperdrive configuration was created.
- Modified
On string - When the Hyperdrive configuration was last modified.
- Mtls
Hyperdrive
Config Mtls - Name string
- Origin
Hyperdrive
Config Origin
- Account
Id string - Identifier
- Caching
Hyperdrive
Config Caching Args - Created
On string - When the Hyperdrive configuration was created.
- Modified
On string - When the Hyperdrive configuration was last modified.
- Mtls
Hyperdrive
Config Mtls Args - Name string
- Origin
Hyperdrive
Config Origin Args
- account
Id String - Identifier
- caching
Hyperdrive
Config Caching - created
On String - When the Hyperdrive configuration was created.
- modified
On String - When the Hyperdrive configuration was last modified.
- mtls
Hyperdrive
Config Mtls - name String
- origin
Hyperdrive
Config Origin
- account
Id string - Identifier
- caching
Hyperdrive
Config Caching - created
On string - When the Hyperdrive configuration was created.
- modified
On string - When the Hyperdrive configuration was last modified.
- mtls
Hyperdrive
Config Mtls - name string
- origin
Hyperdrive
Config Origin
- account_
id str - Identifier
- caching
Hyperdrive
Config Caching Args - created_
on str - When the Hyperdrive configuration was created.
- modified_
on str - When the Hyperdrive configuration was last modified.
- mtls
Hyperdrive
Config Mtls Args - name str
- origin
Hyperdrive
Config Origin Args
- account
Id String - Identifier
- caching Property Map
- created
On String - When the Hyperdrive configuration was created.
- modified
On String - When the Hyperdrive configuration was last modified.
- mtls Property Map
- name String
- origin Property Map
Supporting Types
HyperdriveConfigCaching, HyperdriveConfigCachingArgs
- Disabled bool
- When set to true, disables the caching of SQL responses. (Default: false)
- Max
Age int - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- Stale
While intRevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
- Disabled bool
- When set to true, disables the caching of SQL responses. (Default: false)
- Max
Age int - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- Stale
While intRevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
- disabled Boolean
- When set to true, disables the caching of SQL responses. (Default: false)
- max
Age Integer - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- stale
While IntegerRevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
- disabled boolean
- When set to true, disables the caching of SQL responses. (Default: false)
- max
Age number - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- stale
While numberRevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
- disabled bool
- When set to true, disables the caching of SQL responses. (Default: false)
- max_
age int - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- stale_
while_ intrevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
- disabled Boolean
- When set to true, disables the caching of SQL responses. (Default: false)
- max
Age Number - When present, specifies max duration for which items should persist in the cache. Not returned if set to default. (Default: 60)
- stale
While NumberRevalidate - When present, indicates the number of seconds cache may serve the response after it becomes stale. Not returned if set to default. (Default: 15)
HyperdriveConfigMtls, HyperdriveConfigMtlsArgs
- Ca
Certificate stringId - CA certificate ID
- Mtls
Certificate stringId - mTLS certificate ID
- Sslmode string
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
- Ca
Certificate stringId - CA certificate ID
- Mtls
Certificate stringId - mTLS certificate ID
- Sslmode string
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
- ca
Certificate StringId - CA certificate ID
- mtls
Certificate StringId - mTLS certificate ID
- sslmode String
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
- ca
Certificate stringId - CA certificate ID
- mtls
Certificate stringId - mTLS certificate ID
- sslmode string
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
- ca_
certificate_ strid - CA certificate ID
- mtls_
certificate_ strid - mTLS certificate ID
- sslmode str
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
- ca
Certificate StringId - CA certificate ID
- mtls
Certificate StringId - mTLS certificate ID
- sslmode String
- SSL mode used for CA verification. Must be 'require', 'verify-ca', or 'verify-full'
HyperdriveConfigOrigin, HyperdriveConfigOriginArgs
- Database string
- The name of your origin database.
- Host string
- The host (hostname or IP) of your origin database.
- Password string
- The password required to access your origin database. This value is write-only and never returned by the API.
- Scheme string
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- User string
- The user of your origin database.
- Access
Client stringId - The Client ID of the Access token to use when connecting to the origin database.
- Access
Client stringSecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- Port int
- The port (default: 5432 for Postgres) of your origin database.
- Database string
- The name of your origin database.
- Host string
- The host (hostname or IP) of your origin database.
- Password string
- The password required to access your origin database. This value is write-only and never returned by the API.
- Scheme string
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- User string
- The user of your origin database.
- Access
Client stringId - The Client ID of the Access token to use when connecting to the origin database.
- Access
Client stringSecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- Port int
- The port (default: 5432 for Postgres) of your origin database.
- database String
- The name of your origin database.
- host String
- The host (hostname or IP) of your origin database.
- password String
- The password required to access your origin database. This value is write-only and never returned by the API.
- scheme String
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- user String
- The user of your origin database.
- access
Client StringId - The Client ID of the Access token to use when connecting to the origin database.
- access
Client StringSecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- port Integer
- The port (default: 5432 for Postgres) of your origin database.
- database string
- The name of your origin database.
- host string
- The host (hostname or IP) of your origin database.
- password string
- The password required to access your origin database. This value is write-only and never returned by the API.
- scheme string
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- user string
- The user of your origin database.
- access
Client stringId - The Client ID of the Access token to use when connecting to the origin database.
- access
Client stringSecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- port number
- The port (default: 5432 for Postgres) of your origin database.
- database str
- The name of your origin database.
- host str
- The host (hostname or IP) of your origin database.
- password str
- The password required to access your origin database. This value is write-only and never returned by the API.
- scheme str
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- user str
- The user of your origin database.
- access_
client_ strid - The Client ID of the Access token to use when connecting to the origin database.
- access_
client_ strsecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- port int
- The port (default: 5432 for Postgres) of your origin database.
- database String
- The name of your origin database.
- host String
- The host (hostname or IP) of your origin database.
- password String
- The password required to access your origin database. This value is write-only and never returned by the API.
- scheme String
- Specifies the URL scheme used to connect to your origin database. Available values: "postgres", "postgresql", "mysql".
- user String
- The user of your origin database.
- access
Client StringId - The Client ID of the Access token to use when connecting to the origin database.
- access
Client StringSecret - The Client Secret of the Access token to use when connecting to the origin database. This value is write-only and never returned by the API.
- port Number
- The port (default: 5432 for Postgres) of your origin database.
Import
$ pulumi import cloudflare:index/hyperdriveConfig:HyperdriveConfig example '<account_id>/<hyperdrive_id>'
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.