checkpoint.ManagementOpenstackDataCenterServer
Explore with Pulumi AI
This resource allows you to execute Check Point OpenStack Data Center Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const testOpenStack = new checkpoint.ManagementOpenstackDataCenterServer("testOpenStack", {
hostname: "HOSTNAME",
password: "PASSWORD",
username: "USERNAME",
});
import pulumi
import pulumi_checkpoint as checkpoint
test_open_stack = checkpoint.ManagementOpenstackDataCenterServer("testOpenStack",
hostname="HOSTNAME",
password="PASSWORD",
username="USERNAME")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := checkpoint.NewManagementOpenstackDataCenterServer(ctx, "testOpenStack", &checkpoint.ManagementOpenstackDataCenterServerArgs{
Hostname: pulumi.String("HOSTNAME"),
Password: pulumi.String("PASSWORD"),
Username: pulumi.String("USERNAME"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var testOpenStack = new Checkpoint.ManagementOpenstackDataCenterServer("testOpenStack", new()
{
Hostname = "HOSTNAME",
Password = "PASSWORD",
Username = "USERNAME",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementOpenstackDataCenterServer;
import com.pulumi.checkpoint.ManagementOpenstackDataCenterServerArgs;
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 testOpenStack = new ManagementOpenstackDataCenterServer("testOpenStack", ManagementOpenstackDataCenterServerArgs.builder()
.hostname("HOSTNAME")
.password("PASSWORD")
.username("USERNAME")
.build());
}
}
resources:
testOpenStack:
type: checkpoint:ManagementOpenstackDataCenterServer
properties:
hostname: HOSTNAME
password: PASSWORD
username: USERNAME
Create ManagementOpenstackDataCenterServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementOpenstackDataCenterServer(name: string, args: ManagementOpenstackDataCenterServerArgs, opts?: CustomResourceOptions);
@overload
def ManagementOpenstackDataCenterServer(resource_name: str,
args: ManagementOpenstackDataCenterServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementOpenstackDataCenterServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostname: Optional[str] = None,
username: Optional[str] = None,
management_openstack_data_center_server_id: Optional[str] = None,
comments: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
certificate_fingerprint: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
password_base64: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None,
color: Optional[str] = None)
func NewManagementOpenstackDataCenterServer(ctx *Context, name string, args ManagementOpenstackDataCenterServerArgs, opts ...ResourceOption) (*ManagementOpenstackDataCenterServer, error)
public ManagementOpenstackDataCenterServer(string name, ManagementOpenstackDataCenterServerArgs args, CustomResourceOptions? opts = null)
public ManagementOpenstackDataCenterServer(String name, ManagementOpenstackDataCenterServerArgs args)
public ManagementOpenstackDataCenterServer(String name, ManagementOpenstackDataCenterServerArgs args, CustomResourceOptions options)
type: checkpoint:ManagementOpenstackDataCenterServer
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 ManagementOpenstackDataCenterServerArgs
- 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 ManagementOpenstackDataCenterServerArgs
- 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 ManagementOpenstackDataCenterServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementOpenstackDataCenterServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementOpenstackDataCenterServerArgs
- 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 managementOpenstackDataCenterServerResource = new Checkpoint.ManagementOpenstackDataCenterServer("managementOpenstackDataCenterServerResource", new()
{
Hostname = "string",
Username = "string",
ManagementOpenstackDataCenterServerId = "string",
Comments = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
CertificateFingerprint = "string",
Name = "string",
Password = "string",
PasswordBase64 = "string",
Tags = new[]
{
"string",
},
UnsafeAutoAccept = false,
Color = "string",
});
example, err := checkpoint.NewManagementOpenstackDataCenterServer(ctx, "managementOpenstackDataCenterServerResource", &checkpoint.ManagementOpenstackDataCenterServerArgs{
Hostname: pulumi.String("string"),
Username: pulumi.String("string"),
ManagementOpenstackDataCenterServerId: pulumi.String("string"),
Comments: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
CertificateFingerprint: pulumi.String("string"),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
PasswordBase64: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
UnsafeAutoAccept: pulumi.Bool(false),
Color: pulumi.String("string"),
})
var managementOpenstackDataCenterServerResource = new ManagementOpenstackDataCenterServer("managementOpenstackDataCenterServerResource", ManagementOpenstackDataCenterServerArgs.builder()
.hostname("string")
.username("string")
.managementOpenstackDataCenterServerId("string")
.comments("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.certificateFingerprint("string")
.name("string")
.password("string")
.passwordBase64("string")
.tags("string")
.unsafeAutoAccept(false)
.color("string")
.build());
management_openstack_data_center_server_resource = checkpoint.ManagementOpenstackDataCenterServer("managementOpenstackDataCenterServerResource",
hostname="string",
username="string",
management_openstack_data_center_server_id="string",
comments="string",
ignore_errors=False,
ignore_warnings=False,
certificate_fingerprint="string",
name="string",
password="string",
password_base64="string",
tags=["string"],
unsafe_auto_accept=False,
color="string")
const managementOpenstackDataCenterServerResource = new checkpoint.ManagementOpenstackDataCenterServer("managementOpenstackDataCenterServerResource", {
hostname: "string",
username: "string",
managementOpenstackDataCenterServerId: "string",
comments: "string",
ignoreErrors: false,
ignoreWarnings: false,
certificateFingerprint: "string",
name: "string",
password: "string",
passwordBase64: "string",
tags: ["string"],
unsafeAutoAccept: false,
color: "string",
});
type: checkpoint:ManagementOpenstackDataCenterServer
properties:
certificateFingerprint: string
color: string
comments: string
hostname: string
ignoreErrors: false
ignoreWarnings: false
managementOpenstackDataCenterServerId: string
name: string
password: string
passwordBase64: string
tags:
- string
unsafeAutoAccept: false
username: string
ManagementOpenstackDataCenterServer 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 ManagementOpenstackDataCenterServer resource accepts the following input properties:
- Hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- Username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Openstack stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the OpenStack server.
- Password
Base64 string - Password of the OpenStack server encoded in Base64.
- List<string>
- Collection of tag identifiers. tags blocks are documented below.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- Hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- Username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Openstack stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the OpenStack server.
- Password
Base64 string - Password of the OpenStack server encoded in Base64.
- []string
- Collection of tag identifiers. tags blocks are documented below.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname String
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- username String
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Openstack StringData Center Server Id - name String
- Object name.
- password String
- Password of the OpenStack server.
- password
Base64 String - Password of the OpenStack server encoded in Base64.
- List<String>
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Openstack stringData Center Server Id - name string
- Object name.
- password string
- Password of the OpenStack server.
- password
Base64 string - Password of the OpenStack server encoded in Base64.
- string[]
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto booleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname str
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- username str
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate_
fingerprint str - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
openstack_ strdata_ center_ server_ id - name str
- Object name.
- password str
- Password of the OpenStack server.
- password_
base64 str - Password of the OpenStack server encoded in Base64.
- Sequence[str]
- Collection of tag identifiers. tags blocks are documented below.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- hostname String
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- username String
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Openstack StringData Center Server Id - name String
- Object name.
- password String
- Password of the OpenStack server.
- password
Base64 String - Password of the OpenStack server encoded in Base64.
- List<String>
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementOpenstackDataCenterServer 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 ManagementOpenstackDataCenterServer Resource
Get an existing ManagementOpenstackDataCenterServer 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?: ManagementOpenstackDataCenterServerState, opts?: CustomResourceOptions): ManagementOpenstackDataCenterServer
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate_fingerprint: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
hostname: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_openstack_data_center_server_id: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
password_base64: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
unsafe_auto_accept: Optional[bool] = None,
username: Optional[str] = None) -> ManagementOpenstackDataCenterServer
func GetManagementOpenstackDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementOpenstackDataCenterServerState, opts ...ResourceOption) (*ManagementOpenstackDataCenterServer, error)
public static ManagementOpenstackDataCenterServer Get(string name, Input<string> id, ManagementOpenstackDataCenterServerState? state, CustomResourceOptions? opts = null)
public static ManagementOpenstackDataCenterServer get(String name, Output<String> id, ManagementOpenstackDataCenterServerState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementOpenstackDataCenterServer 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.
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Openstack stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the OpenStack server.
- Password
Base64 string - Password of the OpenStack server encoded in Base64.
- List<string>
- Collection of tag identifiers. tags blocks are documented below.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- Username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- Certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Openstack stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the OpenStack server.
- Password
Base64 string - Password of the OpenStack server encoded in Base64.
- []string
- Collection of tag identifiers. tags blocks are documented below.
- Unsafe
Auto boolAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- Username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- hostname String
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Openstack StringData Center Server Id - name String
- Object name.
- password String
- Password of the OpenStack server.
- password
Base64 String - Password of the OpenStack server encoded in Base64.
- List<String>
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- username String
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint string - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- hostname string
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Openstack stringData Center Server Id - name string
- Object name.
- password string
- Password of the OpenStack server.
- password
Base64 string - Password of the OpenStack server encoded in Base64.
- string[]
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto booleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- username string
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate_
fingerprint str - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- hostname str
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
openstack_ strdata_ center_ server_ id - name str
- Object name.
- password str
- Password of the OpenStack server.
- password_
base64 str - Password of the OpenStack server encoded in Base64.
- Sequence[str]
- Collection of tag identifiers. tags blocks are documented below.
- unsafe_
auto_ boolaccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- username str
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
- certificate
Fingerprint String - Specify the SHA-1 or SHA-256 fingerprint of the Data Center Server's certificate.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- hostname String
- URL of the OpenStack server. http(s)://:/Example: https://1.2.3.4:5000/v2.0
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Openstack StringData Center Server Id - name String
- Object name.
- password String
- Password of the OpenStack server.
- password
Base64 String - Password of the OpenStack server encoded in Base64.
- List<String>
- Collection of tag identifiers. tags blocks are documented below.
- unsafe
Auto BooleanAccept - When set to false, the current Data Center Server's certificate should be trusted, either by providing the certificate-fingerprint argument or by relying on a previously trusted certificate of this hostname. When set to true, trust the current Data Center Server's certificate as-is.
- username String
- Username of the OpenStack server. To login to specific domain insert domain name before username. Example: /
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.