1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. ManagementAzureDataCenterServer
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.ManagementAzureDataCenterServer

Explore with Pulumi AI

This resource allows you to execute Check Point Azure Data Center Server.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";

const testAzure = new checkpoint.ManagementAzureDataCenterServer("testAzure", {
    authenticationMethod: "user-authentication",
    password: "MY-SECRET-KEY",
    username: "MY-KEY-ID",
});
Copy
import pulumi
import pulumi_checkpoint as checkpoint

test_azure = checkpoint.ManagementAzureDataCenterServer("testAzure",
    authentication_method="user-authentication",
    password="MY-SECRET-KEY",
    username="MY-KEY-ID")
Copy
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.NewManagementAzureDataCenterServer(ctx, "testAzure", &checkpoint.ManagementAzureDataCenterServerArgs{
			AuthenticationMethod: pulumi.String("user-authentication"),
			Password:             pulumi.String("MY-SECRET-KEY"),
			Username:             pulumi.String("MY-KEY-ID"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;

return await Deployment.RunAsync(() => 
{
    var testAzure = new Checkpoint.ManagementAzureDataCenterServer("testAzure", new()
    {
        AuthenticationMethod = "user-authentication",
        Password = "MY-SECRET-KEY",
        Username = "MY-KEY-ID",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementAzureDataCenterServer;
import com.pulumi.checkpoint.ManagementAzureDataCenterServerArgs;
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 testAzure = new ManagementAzureDataCenterServer("testAzure", ManagementAzureDataCenterServerArgs.builder()
            .authenticationMethod("user-authentication")
            .password("MY-SECRET-KEY")
            .username("MY-KEY-ID")
            .build());

    }
}
Copy
resources:
  testAzure:
    type: checkpoint:ManagementAzureDataCenterServer
    properties:
      authenticationMethod: user-authentication
      password: MY-SECRET-KEY
      username: MY-KEY-ID
Copy

Create ManagementAzureDataCenterServer Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ManagementAzureDataCenterServer(name: string, args: ManagementAzureDataCenterServerArgs, opts?: CustomResourceOptions);
@overload
def ManagementAzureDataCenterServer(resource_name: str,
                                    args: ManagementAzureDataCenterServerArgs,
                                    opts: Optional[ResourceOptions] = None)

@overload
def ManagementAzureDataCenterServer(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    authentication_method: Optional[str] = None,
                                    environment: Optional[str] = None,
                                    ignore_warnings: Optional[bool] = None,
                                    color: Optional[str] = None,
                                    comments: Optional[str] = None,
                                    directory_id: Optional[str] = None,
                                    application_id: Optional[str] = None,
                                    ignore_errors: Optional[bool] = None,
                                    application_key: Optional[str] = None,
                                    management_azure_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,
                                    username: Optional[str] = None)
func NewManagementAzureDataCenterServer(ctx *Context, name string, args ManagementAzureDataCenterServerArgs, opts ...ResourceOption) (*ManagementAzureDataCenterServer, error)
public ManagementAzureDataCenterServer(string name, ManagementAzureDataCenterServerArgs args, CustomResourceOptions? opts = null)
public ManagementAzureDataCenterServer(String name, ManagementAzureDataCenterServerArgs args)
public ManagementAzureDataCenterServer(String name, ManagementAzureDataCenterServerArgs args, CustomResourceOptions options)
type: checkpoint:ManagementAzureDataCenterServer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagementAzureDataCenterServerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagementAzureDataCenterServerArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementAzureDataCenterServerArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagementAzureDataCenterServerArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagementAzureDataCenterServerArgs
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 managementAzureDataCenterServerResource = new Checkpoint.ManagementAzureDataCenterServer("managementAzureDataCenterServerResource", new()
{
    AuthenticationMethod = "string",
    Environment = "string",
    IgnoreWarnings = false,
    Color = "string",
    Comments = "string",
    DirectoryId = "string",
    ApplicationId = "string",
    IgnoreErrors = false,
    ApplicationKey = "string",
    ManagementAzureDataCenterServerId = "string",
    Name = "string",
    Password = "string",
    PasswordBase64 = "string",
    Tags = new[]
    {
        "string",
    },
    Username = "string",
});
Copy
example, err := checkpoint.NewManagementAzureDataCenterServer(ctx, "managementAzureDataCenterServerResource", &checkpoint.ManagementAzureDataCenterServerArgs{
	AuthenticationMethod:              pulumi.String("string"),
	Environment:                       pulumi.String("string"),
	IgnoreWarnings:                    pulumi.Bool(false),
	Color:                             pulumi.String("string"),
	Comments:                          pulumi.String("string"),
	DirectoryId:                       pulumi.String("string"),
	ApplicationId:                     pulumi.String("string"),
	IgnoreErrors:                      pulumi.Bool(false),
	ApplicationKey:                    pulumi.String("string"),
	ManagementAzureDataCenterServerId: pulumi.String("string"),
	Name:                              pulumi.String("string"),
	Password:                          pulumi.String("string"),
	PasswordBase64:                    pulumi.String("string"),
	Tags: pulumi.StringArray{
		pulumi.String("string"),
	},
	Username: pulumi.String("string"),
})
Copy
var managementAzureDataCenterServerResource = new ManagementAzureDataCenterServer("managementAzureDataCenterServerResource", ManagementAzureDataCenterServerArgs.builder()
    .authenticationMethod("string")
    .environment("string")
    .ignoreWarnings(false)
    .color("string")
    .comments("string")
    .directoryId("string")
    .applicationId("string")
    .ignoreErrors(false)
    .applicationKey("string")
    .managementAzureDataCenterServerId("string")
    .name("string")
    .password("string")
    .passwordBase64("string")
    .tags("string")
    .username("string")
    .build());
Copy
management_azure_data_center_server_resource = checkpoint.ManagementAzureDataCenterServer("managementAzureDataCenterServerResource",
    authentication_method="string",
    environment="string",
    ignore_warnings=False,
    color="string",
    comments="string",
    directory_id="string",
    application_id="string",
    ignore_errors=False,
    application_key="string",
    management_azure_data_center_server_id="string",
    name="string",
    password="string",
    password_base64="string",
    tags=["string"],
    username="string")
Copy
const managementAzureDataCenterServerResource = new checkpoint.ManagementAzureDataCenterServer("managementAzureDataCenterServerResource", {
    authenticationMethod: "string",
    environment: "string",
    ignoreWarnings: false,
    color: "string",
    comments: "string",
    directoryId: "string",
    applicationId: "string",
    ignoreErrors: false,
    applicationKey: "string",
    managementAzureDataCenterServerId: "string",
    name: "string",
    password: "string",
    passwordBase64: "string",
    tags: ["string"],
    username: "string",
});
Copy
type: checkpoint:ManagementAzureDataCenterServer
properties:
    applicationId: string
    applicationKey: string
    authenticationMethod: string
    color: string
    comments: string
    directoryId: string
    environment: string
    ignoreErrors: false
    ignoreWarnings: false
    managementAzureDataCenterServerId: string
    name: string
    password: string
    passwordBase64: string
    tags:
        - string
    username: string
Copy

ManagementAzureDataCenterServer 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 ManagementAzureDataCenterServer resource accepts the following input properties:

AuthenticationMethod This property is required. string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
ApplicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
ApplicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
DirectoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
Environment string
Select the Azure Cloud Environment.
IgnoreErrors 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.
IgnoreWarnings bool
Apply changes ignoring warnings.
ManagementAzureDataCenterServerId string
Name string
Object name.
Password string
Password of the Azure account. Required for authentication-method: user-authentication.
PasswordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
Tags List<string>
Collection of tag identifiers. tags blocks are documented below.
Username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
AuthenticationMethod This property is required. string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
ApplicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
ApplicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
DirectoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
Environment string
Select the Azure Cloud Environment.
IgnoreErrors 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.
IgnoreWarnings bool
Apply changes ignoring warnings.
ManagementAzureDataCenterServerId string
Name string
Object name.
Password string
Password of the Azure account. Required for authentication-method: user-authentication.
PasswordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
Tags []string
Collection of tag identifiers. tags blocks are documented below.
Username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
authenticationMethod This property is required. String
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
applicationId String
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey String
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
directoryId String
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment String
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings Boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId String
name String
Object name.
password String
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 String
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags List<String>
Collection of tag identifiers. tags blocks are documented below.
username String
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
authenticationMethod This property is required. string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
applicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
directoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment string
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId string
name string
Object name.
password string
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags string[]
Collection of tag identifiers. tags blocks are documented below.
username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
authentication_method This property is required. str
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
application_id str
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
application_key str
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
directory_id str
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment str
Select the Azure Cloud Environment.
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_azure_data_center_server_id str
name str
Object name.
password str
Password of the Azure account. Required for authentication-method: user-authentication.
password_base64 str
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags Sequence[str]
Collection of tag identifiers. tags blocks are documented below.
username str
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
authenticationMethod This property is required. String
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
applicationId String
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey String
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
directoryId String
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment String
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings Boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId String
name String
Object name.
password String
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 String
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags List<String>
Collection of tag identifiers. tags blocks are documented below.
username String
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.

Outputs

All input properties are implicitly available as output properties. Additionally, the ManagementAzureDataCenterServer 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 ManagementAzureDataCenterServer Resource

Get an existing ManagementAzureDataCenterServer 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?: ManagementAzureDataCenterServerState, opts?: CustomResourceOptions): ManagementAzureDataCenterServer
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_id: Optional[str] = None,
        application_key: Optional[str] = None,
        authentication_method: Optional[str] = None,
        color: Optional[str] = None,
        comments: Optional[str] = None,
        directory_id: Optional[str] = None,
        environment: Optional[str] = None,
        ignore_errors: Optional[bool] = None,
        ignore_warnings: Optional[bool] = None,
        management_azure_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,
        username: Optional[str] = None) -> ManagementAzureDataCenterServer
func GetManagementAzureDataCenterServer(ctx *Context, name string, id IDInput, state *ManagementAzureDataCenterServerState, opts ...ResourceOption) (*ManagementAzureDataCenterServer, error)
public static ManagementAzureDataCenterServer Get(string name, Input<string> id, ManagementAzureDataCenterServerState? state, CustomResourceOptions? opts = null)
public static ManagementAzureDataCenterServer get(String name, Output<String> id, ManagementAzureDataCenterServerState state, CustomResourceOptions options)
resources:  _:    type: checkpoint:ManagementAzureDataCenterServer    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ApplicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
ApplicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
AuthenticationMethod string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
DirectoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
Environment string
Select the Azure Cloud Environment.
IgnoreErrors 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.
IgnoreWarnings bool
Apply changes ignoring warnings.
ManagementAzureDataCenterServerId string
Name string
Object name.
Password string
Password of the Azure account. Required for authentication-method: user-authentication.
PasswordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
Tags List<string>
Collection of tag identifiers. tags blocks are documented below.
Username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
ApplicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
ApplicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
AuthenticationMethod string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
Color string
Color of the object. Should be one of existing colors.
Comments string
Comments string.
DirectoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
Environment string
Select the Azure Cloud Environment.
IgnoreErrors 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.
IgnoreWarnings bool
Apply changes ignoring warnings.
ManagementAzureDataCenterServerId string
Name string
Object name.
Password string
Password of the Azure account. Required for authentication-method: user-authentication.
PasswordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
Tags []string
Collection of tag identifiers. tags blocks are documented below.
Username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
applicationId String
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey String
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
authenticationMethod String
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
directoryId String
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment String
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings Boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId String
name String
Object name.
password String
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 String
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags List<String>
Collection of tag identifiers. tags blocks are documented below.
username String
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
applicationId string
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey string
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
authenticationMethod string
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
color string
Color of the object. Should be one of existing colors.
comments string
Comments string.
directoryId string
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment string
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId string
name string
Object name.
password string
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 string
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags string[]
Collection of tag identifiers. tags blocks are documented below.
username string
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
application_id str
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
application_key str
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
authentication_method str
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
color str
Color of the object. Should be one of existing colors.
comments str
Comments string.
directory_id str
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment str
Select the Azure Cloud Environment.
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_azure_data_center_server_id str
name str
Object name.
password str
Password of the Azure account. Required for authentication-method: user-authentication.
password_base64 str
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags Sequence[str]
Collection of tag identifiers. tags blocks are documented below.
username str
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.
applicationId String
The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
applicationKey String
The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
authenticationMethod String
user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
color String
Color of the object. Should be one of existing colors.
comments String
Comments string.
directoryId String
The Directory ID of the Azure AD, in UUID format. Required for authentication-method: service-principal-authentication.
environment String
Select the Azure Cloud Environment.
ignoreErrors 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.
ignoreWarnings Boolean
Apply changes ignoring warnings.
managementAzureDataCenterServerId String
name String
Object name.
password String
Password of the Azure account. Required for authentication-method: user-authentication.
passwordBase64 String
Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
tags List<String>
Collection of tag identifiers. tags blocks are documented below.
username String
An Azure Active Directory user Format @. Required for authentication-method: user-authentication.

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.