1. Packages
  2. Incapsula Provider
  3. API Docs
  4. Subaccount
incapsula 3.33.0 published on Wednesday, Apr 30, 2025 by imperva

incapsula.Subaccount

Explore with Pulumi AI

incapsula logo
incapsula 3.33.0 published on Wednesday, Apr 30, 2025 by imperva

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as incapsula from "@pulumi/incapsula";
    
    const example_subaccount = new incapsula.Subaccount("example-subaccount", {
        dataStorageRegion: "US",
        enableHttp2ForNewSites: "true",
        enableHttp2ToOriginForNewSites: "true",
        logLevel: "full",
        logsAccountId: 789,
        subAccountName: "Example SubAccount",
    });
    
    import pulumi
    import pulumi_incapsula as incapsula
    
    example_subaccount = incapsula.Subaccount("example-subaccount",
        data_storage_region="US",
        enable_http2_for_new_sites="true",
        enable_http2_to_origin_for_new_sites="true",
        log_level="full",
        logs_account_id=789,
        sub_account_name="Example SubAccount")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/incapsula/v3/incapsula"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := incapsula.NewSubaccount(ctx, "example-subaccount", &incapsula.SubaccountArgs{
    			DataStorageRegion:              pulumi.String("US"),
    			EnableHttp2ForNewSites:         pulumi.String("true"),
    			EnableHttp2ToOriginForNewSites: pulumi.String("true"),
    			LogLevel:                       pulumi.String("full"),
    			LogsAccountId:                  pulumi.Float64(789),
    			SubAccountName:                 pulumi.String("Example SubAccount"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Incapsula = Pulumi.Incapsula;
    
    return await Deployment.RunAsync(() => 
    {
        var example_subaccount = new Incapsula.Subaccount("example-subaccount", new()
        {
            DataStorageRegion = "US",
            EnableHttp2ForNewSites = "true",
            EnableHttp2ToOriginForNewSites = "true",
            LogLevel = "full",
            LogsAccountId = 789,
            SubAccountName = "Example SubAccount",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.incapsula.Subaccount;
    import com.pulumi.incapsula.SubaccountArgs;
    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 example_subaccount = new Subaccount("example-subaccount", SubaccountArgs.builder()
                .dataStorageRegion("US")
                .enableHttp2ForNewSites(true)
                .enableHttp2ToOriginForNewSites(true)
                .logLevel("full")
                .logsAccountId("789")
                .subAccountName("Example SubAccount")
                .build());
    
        }
    }
    
    resources:
      example-subaccount:
        type: incapsula:Subaccount
        properties:
          dataStorageRegion: US
          enableHttp2ForNewSites: true
          enableHttp2ToOriginForNewSites: true
          logLevel: full
          logsAccountId: '789'
          subAccountName: Example SubAccount
    

    Create Subaccount Resource

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

    Constructor syntax

    new Subaccount(name: string, args: SubaccountArgs, opts?: CustomResourceOptions);
    @overload
    def Subaccount(resource_name: str,
                   args: SubaccountArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Subaccount(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   sub_account_name: Optional[str] = None,
                   data_storage_region: Optional[str] = None,
                   enable_http2_for_new_sites: Optional[str] = None,
                   enable_http2_to_origin_for_new_sites: Optional[str] = None,
                   log_level: Optional[str] = None,
                   logs_account_id: Optional[float] = None,
                   parent_id: Optional[float] = None,
                   ref_id: Optional[str] = None,
                   subaccount_id: Optional[str] = None)
    func NewSubaccount(ctx *Context, name string, args SubaccountArgs, opts ...ResourceOption) (*Subaccount, error)
    public Subaccount(string name, SubaccountArgs args, CustomResourceOptions? opts = null)
    public Subaccount(String name, SubaccountArgs args)
    public Subaccount(String name, SubaccountArgs args, CustomResourceOptions options)
    
    type: incapsula:Subaccount
    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 SubaccountArgs
    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 SubaccountArgs
    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 SubaccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SubaccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SubaccountArgs
    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 subaccountResource = new Incapsula.Subaccount("subaccountResource", new()
    {
        SubAccountName = "string",
        DataStorageRegion = "string",
        EnableHttp2ForNewSites = "string",
        EnableHttp2ToOriginForNewSites = "string",
        LogLevel = "string",
        LogsAccountId = 0,
        ParentId = 0,
        RefId = "string",
        SubaccountId = "string",
    });
    
    example, err := incapsula.NewSubaccount(ctx, "subaccountResource", &incapsula.SubaccountArgs{
    	SubAccountName:                 pulumi.String("string"),
    	DataStorageRegion:              pulumi.String("string"),
    	EnableHttp2ForNewSites:         pulumi.String("string"),
    	EnableHttp2ToOriginForNewSites: pulumi.String("string"),
    	LogLevel:                       pulumi.String("string"),
    	LogsAccountId:                  pulumi.Float64(0),
    	ParentId:                       pulumi.Float64(0),
    	RefId:                          pulumi.String("string"),
    	SubaccountId:                   pulumi.String("string"),
    })
    
    var subaccountResource = new Subaccount("subaccountResource", SubaccountArgs.builder()
        .subAccountName("string")
        .dataStorageRegion("string")
        .enableHttp2ForNewSites("string")
        .enableHttp2ToOriginForNewSites("string")
        .logLevel("string")
        .logsAccountId(0)
        .parentId(0)
        .refId("string")
        .subaccountId("string")
        .build());
    
    subaccount_resource = incapsula.Subaccount("subaccountResource",
        sub_account_name="string",
        data_storage_region="string",
        enable_http2_for_new_sites="string",
        enable_http2_to_origin_for_new_sites="string",
        log_level="string",
        logs_account_id=0,
        parent_id=0,
        ref_id="string",
        subaccount_id="string")
    
    const subaccountResource = new incapsula.Subaccount("subaccountResource", {
        subAccountName: "string",
        dataStorageRegion: "string",
        enableHttp2ForNewSites: "string",
        enableHttp2ToOriginForNewSites: "string",
        logLevel: "string",
        logsAccountId: 0,
        parentId: 0,
        refId: "string",
        subaccountId: "string",
    });
    
    type: incapsula:Subaccount
    properties:
        dataStorageRegion: string
        enableHttp2ForNewSites: string
        enableHttp2ToOriginForNewSites: string
        logLevel: string
        logsAccountId: 0
        parentId: 0
        refId: string
        subAccountName: string
        subaccountId: string
    

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

    SubAccountName string
    SubAccount name.
    DataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    EnableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    EnableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    LogLevel string
    The log level. Options are full, security, none, default.
    LogsAccountId double
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    ParentId double
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    RefId string
    Customer specific identifier for this operation.
    SubaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    SubAccountName string
    SubAccount name.
    DataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    EnableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    EnableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    LogLevel string
    The log level. Options are full, security, none, default.
    LogsAccountId float64
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    ParentId float64
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    RefId string
    Customer specific identifier for this operation.
    SubaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    subAccountName String
    SubAccount name.
    dataStorageRegion String
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites String
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites String
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel String
    The log level. Options are full, security, none, default.
    logsAccountId Double
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId Double
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId String
    Customer specific identifier for this operation.
    subaccountId String
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    subAccountName string
    SubAccount name.
    dataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel string
    The log level. Options are full, security, none, default.
    logsAccountId number
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId number
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId string
    Customer specific identifier for this operation.
    subaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    sub_account_name str
    SubAccount name.
    data_storage_region str
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enable_http2_for_new_sites str
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enable_http2_to_origin_for_new_sites str
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    log_level str
    The log level. Options are full, security, none, default.
    logs_account_id float
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parent_id float
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    ref_id str
    Customer specific identifier for this operation.
    subaccount_id str
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    subAccountName String
    SubAccount name.
    dataStorageRegion String
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites String
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites String
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel String
    The log level. Options are full, security, none, default.
    logsAccountId Number
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId Number
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId String
    Customer specific identifier for this operation.
    subaccountId String
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    

    Outputs

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

    Get an existing Subaccount 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?: SubaccountState, opts?: CustomResourceOptions): Subaccount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_storage_region: Optional[str] = None,
            enable_http2_for_new_sites: Optional[str] = None,
            enable_http2_to_origin_for_new_sites: Optional[str] = None,
            log_level: Optional[str] = None,
            logs_account_id: Optional[float] = None,
            parent_id: Optional[float] = None,
            ref_id: Optional[str] = None,
            sub_account_name: Optional[str] = None,
            subaccount_id: Optional[str] = None) -> Subaccount
    func GetSubaccount(ctx *Context, name string, id IDInput, state *SubaccountState, opts ...ResourceOption) (*Subaccount, error)
    public static Subaccount Get(string name, Input<string> id, SubaccountState? state, CustomResourceOptions? opts = null)
    public static Subaccount get(String name, Output<String> id, SubaccountState state, CustomResourceOptions options)
    resources:  _:    type: incapsula:Subaccount    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.
    The following state arguments are supported:
    DataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    EnableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    EnableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    LogLevel string
    The log level. Options are full, security, none, default.
    LogsAccountId double
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    ParentId double
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    RefId string
    Customer specific identifier for this operation.
    SubAccountName string
    SubAccount name.
    SubaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    DataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    EnableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    EnableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    LogLevel string
    The log level. Options are full, security, none, default.
    LogsAccountId float64
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    ParentId float64
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    RefId string
    Customer specific identifier for this operation.
    SubAccountName string
    SubAccount name.
    SubaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    dataStorageRegion String
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites String
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites String
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel String
    The log level. Options are full, security, none, default.
    logsAccountId Double
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId Double
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId String
    Customer specific identifier for this operation.
    subAccountName String
    SubAccount name.
    subaccountId String
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    dataStorageRegion string
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites string
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites string
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel string
    The log level. Options are full, security, none, default.
    logsAccountId number
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId number
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId string
    Customer specific identifier for this operation.
    subAccountName string
    SubAccount name.
    subaccountId string
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    data_storage_region str
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enable_http2_for_new_sites str
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enable_http2_to_origin_for_new_sites str
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    log_level str
    The log level. Options are full, security, none, default.
    logs_account_id float
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parent_id float
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    ref_id str
    Customer specific identifier for this operation.
    sub_account_name str
    SubAccount name.
    subaccount_id str
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    
    dataStorageRegion String
    Default data region of the subaccount for newly created sites. Options are APAC, EU, US and AU. Defaults to US.
    enableHttp2ForNewSites String
    Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are true and false. Defaults to true.
    enableHttp2ToOriginForNewSites String
    Use this option to enable HTTP/2 support for traffic between Imperva and your origin server for newly created SSL sites. This option can only be 'true' once 'enable_http2_for_new_sites' is enabled for newly created sites. Options are true and false. Defaults to false.
    logLevel String
    The log level. Options are full, security, none, default.
    logsAccountId Number
    Account where logs should be stored. Available only for Enterprise Plan customers that purchased the Logs Integration SKU. Numeric identifier of the account that purchased the logs integration SKU and which collects the logs. If not specified, operation will be performed on the account identified by the authentication parameters.
    parentId Number
    The newly created subaccount's parent id. If not specified, the account identified by the authentication parameters will be assigned as the parent.
    refId String
    Customer specific identifier for this operation.
    subAccountName String
    SubAccount name.
    subaccountId String
    Unique identifier in the API for the Sub Account ID.

    $ terraform import incapsula_subaccount.demo 1234
    

    Package Details

    Repository
    incapsula imperva/terraform-provider-incapsula
    License
    Notes
    This Pulumi package is based on the incapsula Terraform Provider.
    incapsula logo
    incapsula 3.33.0 published on Wednesday, Apr 30, 2025 by imperva