alicloud.esa.HttpResponseHeaderModificationRule
Explore with Pulumi AI
Provides a ESA Http Response Header Modification Rule resource.
For information about ESA Http Response Header Modification Rule and how to use it, see What is Http Response Header Modification Rule.
NOTE: Available since v1.243.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const resourceHttpResponseHeaderModificationRuleExample = new alicloud.esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example", {
type: "NS",
autoRenew: false,
period: 1,
paymentType: "Subscription",
coverage: "overseas",
autoPay: true,
planName: "high",
});
const resourceSiteHttpResponseHeaderModificationRuleExample = new alicloud.esa.Site("resource_Site_HttpResponseHeaderModificationRule_example", {
siteName: "gositecdn.cn",
instanceId: resourceHttpResponseHeaderModificationRuleExample.id,
coverage: "overseas",
accessType: "NS",
});
const _default = new alicloud.esa.HttpResponseHeaderModificationRule("default", {
ruleEnable: "on",
responseHeaderModifications: [
{
value: "add",
operation: "add",
name: "exampleadd",
},
{
operation: "del",
name: "exampledel",
},
{
operation: "modify",
name: "examplemodify",
value: "modify",
},
],
rule: "(http.host eq \"video.example.com\")",
siteVersion: 0,
ruleName: "exampleResponseHeader",
siteId: resourceSiteHttpResponseHeaderModificationRuleExample.id,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
resource_http_response_header_modification_rule_example = alicloud.esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example",
type="NS",
auto_renew=False,
period=1,
payment_type="Subscription",
coverage="overseas",
auto_pay=True,
plan_name="high")
resource_site_http_response_header_modification_rule_example = alicloud.esa.Site("resource_Site_HttpResponseHeaderModificationRule_example",
site_name="gositecdn.cn",
instance_id=resource_http_response_header_modification_rule_example.id,
coverage="overseas",
access_type="NS")
default = alicloud.esa.HttpResponseHeaderModificationRule("default",
rule_enable="on",
response_header_modifications=[
{
"value": "add",
"operation": "add",
"name": "exampleadd",
},
{
"operation": "del",
"name": "exampledel",
},
{
"operation": "modify",
"name": "examplemodify",
"value": "modify",
},
],
rule="(http.host eq \"video.example.com\")",
site_version=0,
rule_name="exampleResponseHeader",
site_id=resource_site_http_response_header_modification_rule_example.id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/esa"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
resourceHttpResponseHeaderModificationRuleExample, err := esa.NewRatePlanInstance(ctx, "resource_HttpResponseHeaderModificationRule_example", &esa.RatePlanInstanceArgs{
Type: pulumi.String("NS"),
AutoRenew: pulumi.Bool(false),
Period: pulumi.Int(1),
PaymentType: pulumi.String("Subscription"),
Coverage: pulumi.String("overseas"),
AutoPay: pulumi.Bool(true),
PlanName: pulumi.String("high"),
})
if err != nil {
return err
}
resourceSiteHttpResponseHeaderModificationRuleExample, err := esa.NewSite(ctx, "resource_Site_HttpResponseHeaderModificationRule_example", &esa.SiteArgs{
SiteName: pulumi.String("gositecdn.cn"),
InstanceId: resourceHttpResponseHeaderModificationRuleExample.ID(),
Coverage: pulumi.String("overseas"),
AccessType: pulumi.String("NS"),
})
if err != nil {
return err
}
_, err = esa.NewHttpResponseHeaderModificationRule(ctx, "default", &esa.HttpResponseHeaderModificationRuleArgs{
RuleEnable: pulumi.String("on"),
ResponseHeaderModifications: esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArray{
&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
Value: pulumi.String("add"),
Operation: pulumi.String("add"),
Name: pulumi.String("exampleadd"),
},
&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
Operation: pulumi.String("del"),
Name: pulumi.String("exampledel"),
},
&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
Operation: pulumi.String("modify"),
Name: pulumi.String("examplemodify"),
Value: pulumi.String("modify"),
},
},
Rule: pulumi.String("(http.host eq \"video.example.com\")"),
SiteVersion: pulumi.Int(0),
RuleName: pulumi.String("exampleResponseHeader"),
SiteId: resourceSiteHttpResponseHeaderModificationRuleExample.ID(),
})
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 config = new Config();
var name = config.Get("name") ?? "terraform-example";
var resourceHttpResponseHeaderModificationRuleExample = new AliCloud.Esa.RatePlanInstance("resource_HttpResponseHeaderModificationRule_example", new()
{
Type = "NS",
AutoRenew = false,
Period = 1,
PaymentType = "Subscription",
Coverage = "overseas",
AutoPay = true,
PlanName = "high",
});
var resourceSiteHttpResponseHeaderModificationRuleExample = new AliCloud.Esa.Site("resource_Site_HttpResponseHeaderModificationRule_example", new()
{
SiteName = "gositecdn.cn",
InstanceId = resourceHttpResponseHeaderModificationRuleExample.Id,
Coverage = "overseas",
AccessType = "NS",
});
var @default = new AliCloud.Esa.HttpResponseHeaderModificationRule("default", new()
{
RuleEnable = "on",
ResponseHeaderModifications = new[]
{
new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
{
Value = "add",
Operation = "add",
Name = "exampleadd",
},
new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
{
Operation = "del",
Name = "exampledel",
},
new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
{
Operation = "modify",
Name = "examplemodify",
Value = "modify",
},
},
Rule = "(http.host eq \"video.example.com\")",
SiteVersion = 0,
RuleName = "exampleResponseHeader",
SiteId = resourceSiteHttpResponseHeaderModificationRuleExample.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.esa.RatePlanInstance;
import com.pulumi.alicloud.esa.RatePlanInstanceArgs;
import com.pulumi.alicloud.esa.Site;
import com.pulumi.alicloud.esa.SiteArgs;
import com.pulumi.alicloud.esa.HttpResponseHeaderModificationRule;
import com.pulumi.alicloud.esa.HttpResponseHeaderModificationRuleArgs;
import com.pulumi.alicloud.esa.inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs;
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 config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var resourceHttpResponseHeaderModificationRuleExample = new RatePlanInstance("resourceHttpResponseHeaderModificationRuleExample", RatePlanInstanceArgs.builder()
.type("NS")
.autoRenew("false")
.period("1")
.paymentType("Subscription")
.coverage("overseas")
.autoPay("true")
.planName("high")
.build());
var resourceSiteHttpResponseHeaderModificationRuleExample = new Site("resourceSiteHttpResponseHeaderModificationRuleExample", SiteArgs.builder()
.siteName("gositecdn.cn")
.instanceId(resourceHttpResponseHeaderModificationRuleExample.id())
.coverage("overseas")
.accessType("NS")
.build());
var default_ = new HttpResponseHeaderModificationRule("default", HttpResponseHeaderModificationRuleArgs.builder()
.ruleEnable("on")
.responseHeaderModifications(
HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
.value("add")
.operation("add")
.name("exampleadd")
.build(),
HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
.operation("del")
.name("exampledel")
.build(),
HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
.operation("modify")
.name("examplemodify")
.value("modify")
.build())
.rule("(http.host eq \"video.example.com\")")
.siteVersion("0")
.ruleName("exampleResponseHeader")
.siteId(resourceSiteHttpResponseHeaderModificationRuleExample.id())
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
resourceHttpResponseHeaderModificationRuleExample:
type: alicloud:esa:RatePlanInstance
name: resource_HttpResponseHeaderModificationRule_example
properties:
type: NS
autoRenew: 'false'
period: '1'
paymentType: Subscription
coverage: overseas
autoPay: 'true'
planName: high
resourceSiteHttpResponseHeaderModificationRuleExample:
type: alicloud:esa:Site
name: resource_Site_HttpResponseHeaderModificationRule_example
properties:
siteName: gositecdn.cn
instanceId: ${resourceHttpResponseHeaderModificationRuleExample.id}
coverage: overseas
accessType: NS
default:
type: alicloud:esa:HttpResponseHeaderModificationRule
properties:
ruleEnable: on
responseHeaderModifications:
- value: add
operation: add
name: exampleadd
- operation: del
name: exampledel
- operation: modify
name: examplemodify
value: modify
rule: (http.host eq "video.example.com")
siteVersion: '0'
ruleName: exampleResponseHeader
siteId: ${resourceSiteHttpResponseHeaderModificationRuleExample.id}
Create HttpResponseHeaderModificationRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HttpResponseHeaderModificationRule(name: string, args: HttpResponseHeaderModificationRuleArgs, opts?: CustomResourceOptions);
@overload
def HttpResponseHeaderModificationRule(resource_name: str,
args: HttpResponseHeaderModificationRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HttpResponseHeaderModificationRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
response_header_modifications: Optional[Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]] = None,
site_id: Optional[int] = None,
rule: Optional[str] = None,
rule_enable: Optional[str] = None,
rule_name: Optional[str] = None,
site_version: Optional[int] = None)
func NewHttpResponseHeaderModificationRule(ctx *Context, name string, args HttpResponseHeaderModificationRuleArgs, opts ...ResourceOption) (*HttpResponseHeaderModificationRule, error)
public HttpResponseHeaderModificationRule(string name, HttpResponseHeaderModificationRuleArgs args, CustomResourceOptions? opts = null)
public HttpResponseHeaderModificationRule(String name, HttpResponseHeaderModificationRuleArgs args)
public HttpResponseHeaderModificationRule(String name, HttpResponseHeaderModificationRuleArgs args, CustomResourceOptions options)
type: alicloud:esa:HttpResponseHeaderModificationRule
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 HttpResponseHeaderModificationRuleArgs
- 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 HttpResponseHeaderModificationRuleArgs
- 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 HttpResponseHeaderModificationRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HttpResponseHeaderModificationRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HttpResponseHeaderModificationRuleArgs
- 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 httpResponseHeaderModificationRuleResource = new AliCloud.Esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", new()
{
ResponseHeaderModifications = new[]
{
new AliCloud.Esa.Inputs.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
{
Name = "string",
Operation = "string",
Value = "string",
},
},
SiteId = 0,
Rule = "string",
RuleEnable = "string",
RuleName = "string",
SiteVersion = 0,
});
example, err := esa.NewHttpResponseHeaderModificationRule(ctx, "httpResponseHeaderModificationRuleResource", &esa.HttpResponseHeaderModificationRuleArgs{
ResponseHeaderModifications: esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArray{
&esa.HttpResponseHeaderModificationRuleResponseHeaderModificationArgs{
Name: pulumi.String("string"),
Operation: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
SiteId: pulumi.Int(0),
Rule: pulumi.String("string"),
RuleEnable: pulumi.String("string"),
RuleName: pulumi.String("string"),
SiteVersion: pulumi.Int(0),
})
var httpResponseHeaderModificationRuleResource = new HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", HttpResponseHeaderModificationRuleArgs.builder()
.responseHeaderModifications(HttpResponseHeaderModificationRuleResponseHeaderModificationArgs.builder()
.name("string")
.operation("string")
.value("string")
.build())
.siteId(0)
.rule("string")
.ruleEnable("string")
.ruleName("string")
.siteVersion(0)
.build());
http_response_header_modification_rule_resource = alicloud.esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource",
response_header_modifications=[{
"name": "string",
"operation": "string",
"value": "string",
}],
site_id=0,
rule="string",
rule_enable="string",
rule_name="string",
site_version=0)
const httpResponseHeaderModificationRuleResource = new alicloud.esa.HttpResponseHeaderModificationRule("httpResponseHeaderModificationRuleResource", {
responseHeaderModifications: [{
name: "string",
operation: "string",
value: "string",
}],
siteId: 0,
rule: "string",
ruleEnable: "string",
ruleName: "string",
siteVersion: 0,
});
type: alicloud:esa:HttpResponseHeaderModificationRule
properties:
responseHeaderModifications:
- name: string
operation: string
value: string
rule: string
ruleEnable: string
ruleName: string
siteId: 0
siteVersion: 0
HttpResponseHeaderModificationRule 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 HttpResponseHeaderModificationRule resource accepts the following input properties:
- Response
Header List<Pulumi.Modifications Ali Cloud. Esa. Inputs. Http Response Header Modification Rule Response Header Modification> - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name string - The rule name.
- Site
Version int - The version number of the website configurations.
- Response
Header []HttpModifications Response Header Modification Rule Response Header Modification Args - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name string - The rule name.
- Site
Version int - The version number of the website configurations.
- response
Header List<HttpModifications Response Header Modification Rule Response Header Modification> - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name String - The rule name.
- site
Version Integer - The version number of the website configurations.
- response
Header HttpModifications Response Header Modification Rule Response Header Modification[] - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - site
Id number - The site ID, which can be obtained by calling the ListSites API.
- rule string
- The rule content.
- rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name string - The rule name.
- site
Version number - The version number of the website configurations.
- response_
header_ Sequence[Httpmodifications Response Header Modification Rule Response Header Modification Args] - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - site_
id int - The site ID, which can be obtained by calling the ListSites API.
- rule str
- The rule content.
- rule_
enable str - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule_
name str - The rule name.
- site_
version int - The version number of the website configurations.
- response
Header List<Property Map>Modifications - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name String - The rule name.
- site
Version Number - The version number of the website configurations.
Outputs
All input properties are implicitly available as output properties. Additionally, the HttpResponseHeaderModificationRule resource produces the following output properties:
Look up Existing HttpResponseHeaderModificationRule Resource
Get an existing HttpResponseHeaderModificationRule 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?: HttpResponseHeaderModificationRuleState, opts?: CustomResourceOptions): HttpResponseHeaderModificationRule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
config_id: Optional[int] = None,
response_header_modifications: Optional[Sequence[HttpResponseHeaderModificationRuleResponseHeaderModificationArgs]] = 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) -> HttpResponseHeaderModificationRule
func GetHttpResponseHeaderModificationRule(ctx *Context, name string, id IDInput, state *HttpResponseHeaderModificationRuleState, opts ...ResourceOption) (*HttpResponseHeaderModificationRule, error)
public static HttpResponseHeaderModificationRule Get(string name, Input<string> id, HttpResponseHeaderModificationRuleState? state, CustomResourceOptions? opts = null)
public static HttpResponseHeaderModificationRule get(String name, Output<String> id, HttpResponseHeaderModificationRuleState state, CustomResourceOptions options)
resources: _: type: alicloud:esa:HttpResponseHeaderModificationRule 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.
- Config
Id int - Config Id
- Response
Header List<Pulumi.Modifications Ali Cloud. Esa. Inputs. Http Response Header Modification Rule Response Header Modification> - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name string - The rule name.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Site
Version int - The version number of the website configurations.
- Config
Id int - Config Id
- Response
Header []HttpModifications Response Header Modification Rule Response Header Modification Args - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - Rule string
- The rule content.
- Rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- Rule
Name string - The rule name.
- Site
Id int - The site ID, which can be obtained by calling the ListSites API.
- Site
Version int - The version number of the website configurations.
- config
Id Integer - Config Id
- response
Header List<HttpModifications Response Header Modification Rule Response Header Modification> - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name String - The rule name.
- site
Id Integer - The site ID, which can be obtained by calling the ListSites API.
- site
Version Integer - The version number of the website configurations.
- config
Id number - Config Id
- response
Header HttpModifications Response Header Modification Rule Response Header Modification[] - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - rule string
- The rule content.
- rule
Enable string - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name string - The rule name.
- site
Id number - The site ID, which can be obtained by calling the ListSites API.
- site
Version number - The version number of the website configurations.
- config_
id int - Config Id
- response_
header_ Sequence[Httpmodifications Response Header Modification Rule Response Header Modification Args] - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - rule str
- The rule content.
- rule_
enable str - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule_
name str - The rule name.
- site_
id int - The site ID, which can be obtained by calling the ListSites API.
- site_
version int - The version number of the website configurations.
- config
Id Number - Config Id
- response
Header List<Property Map>Modifications - The configurations of modifying response headers. You can add, delete, or modify a response header. See
response_header_modification
below. - rule String
- The rule content.
- rule
Enable String - Indicates whether the rule is enabled. Valid values:
- on
- off
- rule
Name String - The rule name.
- site
Id Number - The site ID, which can be obtained by calling the ListSites API.
- site
Version Number - The version number of the website configurations.
Supporting Types
HttpResponseHeaderModificationRuleResponseHeaderModification, HttpResponseHeaderModificationRuleResponseHeaderModificationArgs
Import
ESA Http Response Header Modification Rule can be imported using the id, e.g.
$ pulumi import alicloud:esa/httpResponseHeaderModificationRule:HttpResponseHeaderModificationRule 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.