Skip to content

Commit abca28b

Browse files
committed
New Resource: alicloud_eflo_cluster; New Resource: alicloud_eflo_node; New Resource: alicloud_eflo_node_group; New Resource: alicloud_eflo_invocation.
1 parent e921d88 commit abca28b

15 files changed

+4244
-0
lines changed

alicloud/connectivity/endpoint.go

+1
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ var productCodeToLocationCode = map[string]string{
308308
"live": "live", // Live
309309
"eds_aic": "wycloudphone", // CloudPhone
310310
"cloudcontrol": "cloudcontrol", // CloudControl
311+
"eflo_controller": "efloctrl", // Eflo
311312
}
312313

313314
// irregularProductEndpoint specially records those product codes that

alicloud/provider.go

+13
Original file line numberDiff line numberDiff line change
@@ -896,6 +896,10 @@ func Provider() terraform.ResourceProvider {
896896
},
897897
ResourcesMap: map[string]*schema.Resource{
898898
"alicloud_resource_manager_auto_grouping_rule": resourceAliCloudResourceManagerAutoGroupingRule(),
899+
"alicloud_eflo_invocation": resourceAliCloudEfloInvocation(),
900+
"alicloud_eflo_cluster": resourceAliCloudEfloCluster(),
901+
"alicloud_eflo_node_group": resourceAliCloudEfloNodeGroup(),
902+
"alicloud_eflo_node": resourceAliCloudEfloNode(),
899903
"alicloud_oss_bucket_style": resourceAliCloudOssBucketStyle(),
900904
"alicloud_rocketmq_acl": resourceAliCloudRocketmqAcl(),
901905
"alicloud_rocketmq_account": resourceAliCloudRocketmqAccount(),
@@ -2583,6 +2587,8 @@ func init() {
25832587

25842588
"eflo_endpoint": "Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom eflo endpoints.",
25852589

2590+
"eflo_controller_endpoint": "Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom efloctrl endpoints.",
2591+
25862592
"oceanbase_endpoint": "Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom oceanbase endpoints.",
25872593

25882594
"beebot_endpoint": "Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom beebot endpoints.",
@@ -2738,6 +2744,13 @@ func endpointsSchema() *schema.Schema {
27382744
Description: descriptions["eflo_endpoint"],
27392745
},
27402746

2747+
"eflo_controller": {
2748+
Type: schema.TypeString,
2749+
Optional: true,
2750+
Default: "",
2751+
Description: descriptions["eflo_controller_endpoint"],
2752+
},
2753+
27412754
"srvcatalog": {
27422755
Type: schema.TypeString,
27432756
Optional: true,

0 commit comments

Comments
 (0)