Update CHANGELOG.md
This commit is contained in:
parent
df06d5623d
commit
c853eb5525
|
@ -5,6 +5,7 @@ FEATURES:
|
||||||
* **New Resource:** `aws_api_gateway_domain_name` [GH-8353]
|
* **New Resource:** `aws_api_gateway_domain_name` [GH-8353]
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
|
* core: Names generated with a unique prefix are now sortable based on age [GH-8249]
|
||||||
* provider/aws: Add Primary Endpoint Address attribute for `aws_elasticache_replication_group` [GH-8385]
|
* provider/aws: Add Primary Endpoint Address attribute for `aws_elasticache_replication_group` [GH-8385]
|
||||||
* provider/aws: Add support for `network_mode` to `aws_ecs_task_definition` [GH-8391]
|
* provider/aws: Add support for `network_mode` to `aws_ecs_task_definition` [GH-8391]
|
||||||
* provider/openstack: Add `allowed_address_pairs` to `openstack_networking_port_v2` [GH-8257]
|
* provider/openstack: Add `allowed_address_pairs` to `openstack_networking_port_v2` [GH-8257]
|
||||||
|
|
|
@ -116,10 +116,9 @@ func resourceArmSearchServiceCreate(d *schema.ResourceData, meta interface{}) er
|
||||||
|
|
||||||
log.Printf("[DEBUG] Waiting for Search Service (%s) to become available", d.Get("name"))
|
log.Printf("[DEBUG] Waiting for Search Service (%s) to become available", d.Get("name"))
|
||||||
stateConf := &resource.StateChangeConf{
|
stateConf := &resource.StateChangeConf{
|
||||||
Pending: []string{"provisioning"},
|
Pending: []string{"provisioning"},
|
||||||
Target: []string{"succeeded"},
|
Target: []string{"succeeded"},
|
||||||
Refresh: azureStateRefreshFunc(*resp.ID, client, getSearchServiceCommand),
|
Refresh: azureStateRefreshFunc(*resp.ID, client, getSearchServiceCommand),
|
||||||
// ¯\_(ツ)_/¯
|
|
||||||
Timeout: 30 * time.Minute,
|
Timeout: 30 * time.Minute,
|
||||||
MinTimeout: 15 * time.Second,
|
MinTimeout: 15 * time.Second,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue