Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Resource: alicloud_eflo_cluster; New Resource: alicloud_eflo_node; New Resource: alicloud_eflo_node_group; New Resource: alicloud_eflo_invocation. #8522

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions alicloud/connectivity/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ var productCodeToLocationCode = map[string]string{
"live": "live", // Live
"eds_aic": "wycloudphone", // CloudPhone
"cloudcontrol": "cloudcontrol", // CloudControl
"eflo_controller": "efloctrl", // Eflo
}

// irregularProductEndpoint specially records those product codes that
Expand Down
13 changes: 13 additions & 0 deletions alicloud/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,10 @@ func Provider() terraform.ResourceProvider {
},
ResourcesMap: map[string]*schema.Resource{
"alicloud_resource_manager_auto_grouping_rule": resourceAliCloudResourceManagerAutoGroupingRule(),
"alicloud_eflo_invocation": resourceAliCloudEfloInvocation(),
"alicloud_eflo_cluster": resourceAliCloudEfloCluster(),
"alicloud_eflo_node_group": resourceAliCloudEfloNodeGroup(),
"alicloud_eflo_node": resourceAliCloudEfloNode(),
"alicloud_oss_bucket_style": resourceAliCloudOssBucketStyle(),
"alicloud_rocketmq_acl": resourceAliCloudRocketmqAcl(),
"alicloud_rocketmq_account": resourceAliCloudRocketmqAccount(),
Expand Down Expand Up @@ -2583,6 +2587,8 @@ func init() {

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

"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.",

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

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

"eflo_controller": {
Type: schema.TypeString,
Optional: true,
Default: "",
Description: descriptions["eflo_controller_endpoint"],
},

"srvcatalog": {
Type: schema.TypeString,
Optional: true,
Expand Down
Loading
Loading