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",
});
import pulumi
import pulumi_checkpoint as checkpoint
test_azure = checkpoint.ManagementAzureDataCenterServer("testAzure",
authentication_method="user-authentication",
password="MY-SECRET-KEY",
username="MY-KEY-ID")
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
})
}
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",
});
});
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());
}
}
resources:
testAzure:
type: checkpoint:ManagementAzureDataCenterServer
properties:
authenticationMethod: user-authentication
password: MY-SECRET-KEY
username: MY-KEY-ID
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 string
- The unique name of the resource.
- args ManagementAzureDataCenterServerArgs
- 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 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 string
- The unique name of the resource.
- args ManagementAzureDataCenterServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementAzureDataCenterServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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:
- Authentication
Method string - user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
- Application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- Application
Key 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.
- Directory
Id 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.
- 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 stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- Password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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.
- Authentication
Method string - user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
- Application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- Application
Key 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.
- Directory
Id 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.
- 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 stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- Password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- []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 String - user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
- application
Id String - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key 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.
- directory
Id 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.
- 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
Azure StringData Center Server Id - name String
- Object name.
- password String
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 String - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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.
- authentication
Method string - user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
- application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key 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.
- directory
Id 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.
- 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
Azure stringData Center Server Id - name string
- Object name.
- password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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 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_ strdata_ center_ server_ id - 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.
- 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.
- authentication
Method String - user-authentication Uses the Azure AD User to authenticate. service-principal-authentication Uses the Service Principal to authenticate.
- application
Id String - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key 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.
- directory
Id 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.
- 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
Azure StringData Center Server Id - name String
- Object name.
- password String
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 String - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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
- 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.
- Application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- Application
Key string - The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
- Authentication
Method 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.
- Directory
Id 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.
- 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 stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- Password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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.
- Application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- Application
Key string - The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
- Authentication
Method 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.
- Directory
Id 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.
- 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 stringData Center Server Id - Name string
- Object name.
- Password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- Password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- []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 String - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key String - The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
- authentication
Method 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.
- directory
Id 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.
- 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
Azure StringData Center Server Id - name String
- Object name.
- password String
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 String - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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.
- application
Id string - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key string - The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
- authentication
Method 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.
- directory
Id 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.
- 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
Azure stringData Center Server Id - name string
- Object name.
- password string
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 string - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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_ strdata_ center_ server_ id - 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.
- 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.
- application
Id String - The Application ID of the Service Principal, in UUID format. Required for authentication-method: service-principal-authentication.
- application
Key String - The key created for the Service Principal. Required for authentication-method: service-principal-authentication.
- authentication
Method 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.
- directory
Id 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.
- 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
Azure StringData Center Server Id - name String
- Object name.
- password String
- Password of the Azure account. Required for authentication-method: user-authentication.
- password
Base64 String - Password of the Azure account encoded in Base64. Required for authentication-method: user-authentication.
- 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.