incapsula.Subaccount
Explore with Pulumi AI
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:
- Sub
Account stringName - SubAccount name.
- Data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - Log
Level string - The log level. Options are
full
,security
,none
,default
. - Logs
Account doubleId - 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 double - 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 string - Customer specific identifier for this operation.
- Subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- Sub
Account stringName - SubAccount name.
- Data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - Log
Level string - The log level. Options are
full
,security
,none
,default
. - Logs
Account float64Id - 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 float64 - 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 string - Customer specific identifier for this operation.
- Subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- sub
Account StringName - SubAccount name.
- data
Storage StringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level String - The log level. Options are
full
,security
,none
,default
. - logs
Account DoubleId - 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 Double - 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 String - Customer specific identifier for this operation.
- subaccount
Id String - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- sub
Account stringName - SubAccount name.
- data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level string - The log level. Options are
full
,security
,none
,default
. - logs
Account numberId - 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 number - 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 string - Customer specific identifier for this operation.
- subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- sub_
account_ strname - SubAccount name.
- data_
storage_ strregion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable_
http2_ strfor_ new_ sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable_
http2_ strto_ origin_ for_ new_ sites - 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
andfalse
. Defaults tofalse
. - log_
level str - The log level. Options are
full
,security
,none
,default
. - logs_
account_ floatid - 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
- sub
Account StringName - SubAccount name.
- data
Storage StringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level String - The log level. Options are
full
,security
,none
,default
. - logs
Account NumberId - 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 Number - 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 String - Customer specific identifier for this operation.
- subaccount
Id 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.
- Data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - Log
Level string - The log level. Options are
full
,security
,none
,default
. - Logs
Account doubleId - 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 double - 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 string - Customer specific identifier for this operation.
- Sub
Account stringName - SubAccount name.
- Subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- Data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - Enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - Enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - Log
Level string - The log level. Options are
full
,security
,none
,default
. - Logs
Account float64Id - 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 float64 - 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 string - Customer specific identifier for this operation.
- Sub
Account stringName - SubAccount name.
- Subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- data
Storage StringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level String - The log level. Options are
full
,security
,none
,default
. - logs
Account DoubleId - 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 Double - 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 String - Customer specific identifier for this operation.
- sub
Account StringName - SubAccount name.
- subaccount
Id String - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- data
Storage stringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For stringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To stringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level string - The log level. Options are
full
,security
,none
,default
. - logs
Account numberId - 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 number - 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 string - Customer specific identifier for this operation.
- sub
Account stringName - SubAccount name.
- subaccount
Id string - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- data_
storage_ strregion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable_
http2_ strfor_ new_ sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable_
http2_ strto_ origin_ for_ new_ sites - 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
andfalse
. Defaults tofalse
. - log_
level str - The log level. Options are
full
,security
,none
,default
. - logs_
account_ floatid - 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_ strname - SubAccount name.
- subaccount_
id str - Unique identifier in the API for the Sub Account ID.
$ terraform import incapsula_subaccount.demo 1234
- data
Storage StringRegion - Default data region of the subaccount for newly created sites. Options are
APAC
,EU
,US
andAU
. Defaults toUS
. - enable
Http2For StringNew Sites - Use this option to enable HTTP/2 support for traffic between end-users (visitors) and Imperva for newly created SSL sites. Options are
true
andfalse
. Defaults totrue
. - enable
Http2To StringOrigin For New Sites - 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
andfalse
. Defaults tofalse
. - log
Level String - The log level. Options are
full
,security
,none
,default
. - logs
Account NumberId - 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 Number - 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 String - Customer specific identifier for this operation.
- sub
Account StringName - SubAccount name.
- subaccount
Id 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.