alicloud.esa.HttpsApplicationConfiguration
Explore with Pulumi AI
Provides a ESA Https Application Configuration resource.
For information about ESA Https Application Configuration and how to use it, see What is Https Application Configuration.
NOTE: Available since v1.244.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const _default = alicloud.esa.getSites({
planSubscribeType: "enterpriseplan",
});
const defaultSite = new alicloud.esa.Site("default", {
siteName: "httpsapplicationconfiguration.example.com",
instanceId: _default.then(_default => _default.sites?.[0]?.instanceId),
coverage: "domestic",
accessType: "NS",
});
const defaultHttpsApplicationConfiguration = new alicloud.esa.HttpsApplicationConfiguration("default", {
hstsMaxAge: "31536000",
altSvcClear: "off",
rule: "http.host eq \"video.example.com\"",
httpsForce: "off",
altSvcMa: "86400",
hsts: "off",
ruleName: "rule_example",
ruleEnable: "off",
siteId: defaultSite.id,
altSvcPersist: "off",
hstsPreload: "off",
hstsIncludeSubdomains: "off",
altSvc: "off",
httpsForceCode: "301",
siteVersion: 0,
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.esa.get_sites(plan_subscribe_type="enterpriseplan")
default_site = alicloud.esa.Site("default",
site_name="httpsapplicationconfiguration.example.com",
instance_id=default.sites[0].instance_id,
coverage="domestic",
access_type="NS")
default_https_application_configuration = alicloud.esa.HttpsApplicationConfiguration("default",
hsts_max_age="31536000",
alt_svc_clear="off",
rule="http.host eq \"video.example.com\"",
https_force="off",
alt_svc_ma="86400",
hsts="off",
rule_name="rule_example",
rule_enable="off",
site_id=default_site.id,
alt_svc_persist="off",
hsts_preload="off",
hsts_include_subdomains="off",
alt_svc="off",
https_force_code="301",
site_version=0)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := esa.GetSites(ctx, &esa.GetSitesArgs{
PlanSubscribeType: pulumi.StringRef("enterpriseplan"),
}, nil)
if err != nil {
return err
}
defaultSite, err := esa.NewSite(ctx, "default", &esa.SiteArgs{
SiteName: pulumi.String("httpsapplicationconfiguration.example.com"),
InstanceId: pulumi.String(_default.Sites[0].InstanceId),
Coverage: pulumi.String("domestic"),
AccessType: pulumi.String("NS"),
})
if err != nil {
return err
}
_, err = esa.NewHttpsApplicationConfiguration(ctx, "default", &esa.HttpsApplicationConfigurationArgs{
HstsMaxAge: pulumi.String("31536000"),
AltSvcClear: pulumi.String("off"),
Rule: pulumi.String("http.host eq \"video.example.com\""),
HttpsForce: pulumi.String("off"),
AltSvcMa: pulumi.String("86400"),
Hsts: pulumi.String("off"),
RuleName: pulumi.String("rule_example"),
RuleEnable: pulumi.String("off"),
SiteId: defaultSite.ID(),
AltSvcPersist: pulumi.String("off"),
HstsPreload: pulumi.String("off"),
HstsIncludeSubdomains: pulumi.String("off"),
AltSvc: pulumi.String("off"),
HttpsForceCode: pulumi.String("301"),
SiteVersion: pulumi.Int(0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.Esa.GetSites.Invoke(new()
{
PlanSubscribeType = "enterpriseplan",
});
var defaultSite = new AliCloud.Esa.Site("default", new()
{
SiteName = "httpsapplicationconfiguration.example.com",
InstanceId = @default.Apply(@default => @default.Apply(getSitesResult => getSitesResult.Sites[0]?.InstanceId)),
Coverage = "domestic",
AccessType = "NS",
});
var defaultHttpsApplicationConfiguration = new AliCloud.Esa.HttpsApplicationConfiguration("default", new()
{
HstsMaxAge = "31536000",
AltSvcClear = "off",
Rule = "http.host eq \"video.example.com\"",
HttpsForce = "off",
AltSvcMa = "86400",
Hsts = "off",
RuleName = "rule_example",
RuleEnable = "off",
SiteId = defaultSite.Id,
AltSvcPersist = "off",
HstsPreload = "off",
HstsIncludeSubdomains = "off",
AltSvc = "off",
HttpsForceCode = "301",
SiteVersion = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.EsaFunctions;
import com.pulumi.alicloud.esa.inputs.GetSitesArgs;
import com.pulumi.alicloud.esa.Site;
import com.pulumi.alicloud.esa.SiteArgs;
import com.pulumi.alicloud.esa.HttpsApplicationConfiguration;
import com.pulumi.alicloud.esa.HttpsApplicationConfigurationArgs;
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) {
final var default = EsaFunctions.getSites(GetSitesArgs.builder()
.planSubscribeType("enterpriseplan")
.build());
var defaultSite = new Site("defaultSite", SiteArgs.builder()
.siteName("httpsapplicationconfiguration.example.com")
.instanceId(default_.sites()[0].instanceId())
.coverage("domestic")
.accessType("NS")
.build());
var defaultHttpsApplicationConfiguration = new HttpsApplicationConfiguration("defaultHttpsApplicationConfiguration", HttpsApplicationConfigurationArgs.builder()
.hstsMaxAge("31536000")
.altSvcClear("off")
.rule("http.host eq \"video.example.com\"")
.httpsForce("off")
.altSvcMa("86400")
.hsts("off")
.ruleName("rule_example")
.ruleEnable("off")
.siteId(defaultSite.id())
.altSvcPersist("off")
.hstsPreload("off")
.hstsIncludeSubdomains("off")
.altSvc("off")
.httpsForceCode("301")
.siteVersion("0")
.build());
}
}
resources:
defaultSite:
type: alicloud:esa:Site
name: default
properties:
siteName: httpsapplicationconfiguration.example.com
instanceId: ${default.sites[0].instanceId}
coverage: domestic
accessType: NS
defaultHttpsApplicationConfiguration:
type: alicloud:esa:HttpsApplicationConfiguration
name: default
properties:
hstsMaxAge: '31536000'
altSvcClear: off
rule: http.host eq "video.example.com"
httpsForce: off
altSvcMa: '86400'
hsts: off
ruleName: rule_example
ruleEnable: off
siteId: ${defaultSite.id}
altSvcPersist: off
hstsPreload: off
hstsIncludeSubdomains: off
altSvc: off
httpsForceCode: '301'
siteVersion: '0'
variables:
default:
fn::invoke:
function: alicloud:esa:getSites
arguments:
planSubscribeType: enterpriseplan
Create HttpsApplicationConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HttpsApplicationConfiguration(name: string, args: HttpsApplicationConfigurationArgs, opts?: CustomResourceOptions);
@overload
def HttpsApplicationConfiguration(resource_name: str,
args: HttpsApplicationConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HttpsApplicationConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
site_id: Optional[int] = None,
hsts_max_age: Optional[str] = None,
https_force: Optional[str] = None,
alt_svc_persist: Optional[str] = None,
hsts: Optional[str] = None,
hsts_include_subdomains: Optional[str] = None,
alt_svc: Optional[str] = None,
hsts_preload: Optional[str] = None,
alt_svc_ma: Optional[str] = None,
https_force_code: Optional[str] = None,
rule: Optional[str] = None,
rule_enable: Optional[str] = None,
rule_name: Optional[str] = None,
alt_svc_clear: Optional[str] = None,
site_version: Optional[int] = None)
func NewHttpsApplicationConfiguration(ctx *Context, name string, args HttpsApplicationConfigurationArgs, opts ...ResourceOption) (*HttpsApplicationConfiguration, error)
public HttpsApplicationConfiguration(string name, HttpsApplicationConfigurationArgs args, CustomResourceOptions? opts = null)
public HttpsApplicationConfiguration(String name, HttpsApplicationConfigurationArgs args)
public HttpsApplicationConfiguration(String name, HttpsApplicationConfigurationArgs args, CustomResourceOptions options)
type: alicloud:esa:HttpsApplicationConfiguration
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 HttpsApplicationConfigurationArgs
- 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 HttpsApplicationConfigurationArgs
- 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 HttpsApplicationConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HttpsApplicationConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HttpsApplicationConfigurationArgs
- 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 httpsApplicationConfigurationResource = new AliCloud.Esa.HttpsApplicationConfiguration("httpsApplicationConfigurationResource", new()
{
SiteId = 0,
HstsMaxAge = "string",
HttpsForce = "string",
AltSvcPersist = "string",
Hsts = "string",
HstsIncludeSubdomains = "string",
AltSvc = "string",
HstsPreload = "string",
AltSvcMa = "string",
HttpsForceCode = "string",
Rule = "string",
RuleEnable = "string",
RuleName = "string",
AltSvcClear = "string",
SiteVersion = 0,
});
example, err := esa.NewHttpsApplicationConfiguration(ctx, "httpsApplicationConfigurationResource", &esa.HttpsApplicationConfigurationArgs{
SiteId: pulumi.Int(0),
HstsMaxAge: pulumi.String("string"),
HttpsForce: pulumi.String("string"),
AltSvcPersist: pulumi.String("string"),
Hsts: pulumi.String("string"),
HstsIncludeSubdomains: pulumi.String("string"),
AltSvc: pulumi.String("string"),
HstsPreload: pulumi.String("string"),
AltSvcMa: pulumi.String("string"),
HttpsForceCode: pulumi.String("string"),
Rule: pulumi.String("string"),
RuleEnable: pulumi.String("string"),
RuleName: pulumi.String("string"),
AltSvcClear: pulumi.String("string"),
SiteVersion: pulumi.Int(0),
})
var httpsApplicationConfigurationResource = new HttpsApplicationConfiguration("httpsApplicationConfigurationResource", HttpsApplicationConfigurationArgs.builder()
.siteId(0)
.hstsMaxAge("string")
.httpsForce("string")
.altSvcPersist("string")
.hsts("string")
.hstsIncludeSubdomains("string")
.altSvc("string")
.hstsPreload("string")
.altSvcMa("string")
.httpsForceCode("string")
.rule("string")
.ruleEnable("string")
.ruleName("string")
.altSvcClear("string")
.siteVersion(0)
.build());
https_application_configuration_resource = alicloud.esa.HttpsApplicationConfiguration("httpsApplicationConfigurationResource",
site_id=0,
hsts_max_age="string",
https_force="string",
alt_svc_persist="string",
hsts="string",
hsts_include_subdomains="string",
alt_svc="string",
hsts_preload="string",
alt_svc_ma="string",
https_force_code="string",
rule="string",
rule_enable="string",
rule_name="string",
alt_svc_clear="string",
site_version=0)
const httpsApplicationConfigurationResource = new alicloud.esa.HttpsApplicationConfiguration("httpsApplicationConfigurationResource", {
siteId: 0,
hstsMaxAge: "string",
httpsForce: "string",
altSvcPersist: "string",
hsts: "string",
hstsIncludeSubdomains: "string",
altSvc: "string",
hstsPreload: "string",
altSvcMa: "string",
httpsForceCode: "string",
rule: "string",
ruleEnable: "string",
ruleName: "string",
altSvcClear: "string",
siteVersion: 0,
});
type: alicloud:esa:HttpsApplicationConfiguration
properties:
altSvc: string
altSvcClear: string
altSvcMa: string
altSvcPersist: string
hsts: string
hstsIncludeSubdomains: string
hstsMaxAge: string
hstsPreload: string
httpsForce: string
httpsForceCode: string
rule: string
ruleEnable: string
ruleName: string
siteId: 0
siteVersion: 0
HttpsApplicationConfiguration 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 HttpsApplicationConfiguration resource accepts the following input properties:
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Alt
Svc string - Function switch, default off. Value range:
- Alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- Alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- Alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- Hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- Hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- Hsts
Max stringAge - The expiration time of HSTS, in seconds.
- Hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- Https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- Https
Force stringCode - Forced HTTPS jump status code, value range:
- Rule string
- Rule Content.
- Rule
Enable string - Rule switch. Value range:
- Rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- Site
Version int - The version of the website configurations.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Alt
Svc string - Function switch, default off. Value range:
- Alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- Alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- Alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- Hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- Hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- Hsts
Max stringAge - The expiration time of HSTS, in seconds.
- Hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- Https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- Https
Force stringCode - Forced HTTPS jump status code, value range:
- Rule string
- Rule Content.
- Rule
Enable string - Rule switch. Value range:
- Rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- Site
Version int - The version of the website configurations.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- alt
Svc String - Function switch, default off. Value range:
- alt
Svc StringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc StringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc StringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- hsts String
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include StringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max StringAge - The expiration time of HSTS, in seconds.
- hsts
Preload String - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force String - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force StringCode - Forced HTTPS jump status code, value range:
- rule String
- Rule Content.
- rule
Enable String - Rule switch. Value range:
- rule
Name String - Rule name, you can find out the rule whose rule name is the passed field.
- site
Version Integer - The version of the website configurations.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- alt
Svc string - Function switch, default off. Value range:
- alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max stringAge - The expiration time of HSTS, in seconds.
- hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force stringCode - Forced HTTPS jump status code, value range:
- rule string
- Rule Content.
- rule
Enable string - Rule switch. Value range:
- rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- site
Version number - The version of the website configurations.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- alt_
svc str - Function switch, default off. Value range:
- alt_
svc_ strclear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt_
svc_ strma - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt_
svc_ strpersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- hsts str
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts_
include_ strsubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts_
max_ strage - The expiration time of HSTS, in seconds.
- hsts_
preload str - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https_
force str - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https_
force_ strcode - Forced HTTPS jump status code, value range:
- rule str
- Rule Content.
- rule_
enable str - Rule switch. Value range:
- rule_
name str - Rule name, you can find out the rule whose rule name is the passed field.
- site_
version int - The version of the website configurations.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- alt
Svc String - Function switch, default off. Value range:
- alt
Svc StringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc StringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc StringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- hsts String
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include StringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max StringAge - The expiration time of HSTS, in seconds.
- hsts
Preload String - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force String - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force StringCode - Forced HTTPS jump status code, value range:
- rule String
- Rule Content.
- rule
Enable String - Rule switch. Value range:
- rule
Name String - Rule name, you can find out the rule whose rule name is the passed field.
- site
Version Number - The version of the website configurations.
Outputs
All input properties are implicitly available as output properties. Additionally, the HttpsApplicationConfiguration resource produces the following output properties:
Look up Existing HttpsApplicationConfiguration Resource
Get an existing HttpsApplicationConfiguration 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?: HttpsApplicationConfigurationState, opts?: CustomResourceOptions): HttpsApplicationConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alt_svc: Optional[str] = None,
alt_svc_clear: Optional[str] = None,
alt_svc_ma: Optional[str] = None,
alt_svc_persist: Optional[str] = None,
config_id: Optional[int] = None,
hsts: Optional[str] = None,
hsts_include_subdomains: Optional[str] = None,
hsts_max_age: Optional[str] = None,
hsts_preload: Optional[str] = None,
https_force: Optional[str] = None,
https_force_code: Optional[str] = None,
rule: Optional[str] = None,
rule_enable: Optional[str] = None,
rule_name: Optional[str] = None,
site_id: Optional[int] = None,
site_version: Optional[int] = None) -> HttpsApplicationConfiguration
func GetHttpsApplicationConfiguration(ctx *Context, name string, id IDInput, state *HttpsApplicationConfigurationState, opts ...ResourceOption) (*HttpsApplicationConfiguration, error)
public static HttpsApplicationConfiguration Get(string name, Input<string> id, HttpsApplicationConfigurationState? state, CustomResourceOptions? opts = null)
public static HttpsApplicationConfiguration get(String name, Output<String> id, HttpsApplicationConfigurationState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:HttpsApplicationConfiguration 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.
- Alt
Svc string - Function switch, default off. Value range:
- Alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- Alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- Alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- Config
Id int - Config Id
- Hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- Hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- Hsts
Max stringAge - The expiration time of HSTS, in seconds.
- Hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- Https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- Https
Force stringCode - Forced HTTPS jump status code, value range:
- Rule string
- Rule Content.
- Rule
Enable string - Rule switch. Value range:
- Rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Site
Version int - The version of the website configurations.
- Alt
Svc string - Function switch, default off. Value range:
- Alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- Alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- Alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- Config
Id int - Config Id
- Hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- Hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- Hsts
Max stringAge - The expiration time of HSTS, in seconds.
- Hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- Https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- Https
Force stringCode - Forced HTTPS jump status code, value range:
- Rule string
- Rule Content.
- Rule
Enable string - Rule switch. Value range:
- Rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Site
Version int - The version of the website configurations.
- alt
Svc String - Function switch, default off. Value range:
- alt
Svc StringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc StringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc StringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- config
Id Integer - Config Id
- hsts String
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include StringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max StringAge - The expiration time of HSTS, in seconds.
- hsts
Preload String - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force String - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force StringCode - Forced HTTPS jump status code, value range:
- rule String
- Rule Content.
- rule
Enable String - Rule switch. Value range:
- rule
Name String - Rule name, you can find out the rule whose rule name is the passed field.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- site
Version Integer - The version of the website configurations.
- alt
Svc string - Function switch, default off. Value range:
- alt
Svc stringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc stringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc stringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- config
Id number - Config Id
- hsts string
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include stringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max stringAge - The expiration time of HSTS, in seconds.
- hsts
Preload string - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force string - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force stringCode - Forced HTTPS jump status code, value range:
- rule string
- Rule Content.
- rule
Enable string - Rule switch. Value range:
- rule
Name string - Rule name, you can find out the rule whose rule name is the passed field.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- site
Version number - The version of the website configurations.
- alt_
svc str - Function switch, default off. Value range:
- alt_
svc_ strclear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt_
svc_ strma - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt_
svc_ strpersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- config_
id int - Config Id
- hsts str
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts_
include_ strsubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts_
max_ strage - The expiration time of HSTS, in seconds.
- hsts_
preload str - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https_
force str - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https_
force_ strcode - Forced HTTPS jump status code, value range:
- rule str
- Rule Content.
- rule_
enable str - Rule switch. Value range:
- rule_
name str - Rule name, you can find out the rule whose rule name is the passed field.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- site_
version int - The version of the website configurations.
- alt
Svc String - Function switch, default off. Value range:
- alt
Svc StringClear - Alt-Svc whether The header contains the clear parameter. This parameter is disabled by default. Value range:
- alt
Svc StringMa - The effective time of the Alt-Svc, in seconds. The default value is 86400 seconds.
- alt
Svc StringPersist - Alt-Svc whether The header contains the persist parameter. This parameter is disabled by default. Value range:
- config
Id Number - Config Id
- hsts String
- Whether to enable HSTS. It is disabled by default. Value range:
- hsts
Include StringSubdomains - Whether to include subdomains in HSTS is disabled by default. Value range:
- hsts
Max StringAge - The expiration time of HSTS, in seconds.
- hsts
Preload String - Whether to enable HSTS preloading. It is disabled by default. Value range:
- https
Force String - Whether to enable forced HTTPS. It is disabled by default. Value range:
- https
Force StringCode - Forced HTTPS jump status code, value range:
- rule String
- Rule Content.
- rule
Enable String - Rule switch. Value range:
- rule
Name String - Rule name, you can find out the rule whose rule name is the passed field.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- site
Version Number - The version of the website configurations.
Import
ESA Https Application Configuration can be imported using the id, e.g.
$ pulumi import alicloud:esa/httpsApplicationConfiguration:HttpsApplicationConfiguration example <site_id>:<config_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.