Skip to content

Commit 0b63315

Browse files
authored
fix(tem): add new status autoconfig (#2748)
1 parent 69c8334 commit 0b63315

File tree

2 files changed

+240
-189
lines changed

2 files changed

+240
-189
lines changed

internal/services/tem/domain_validation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func ResourceDomainValidationCreate(ctx context.Context, d *schema.ResourceData,
7777
Region: region,
7878
DomainID: domain.ID,
7979
})
80-
if domainCheck == nil || domainCheck.Status == "pending" || domainCheck.Status == "unchecked" {
80+
if domainCheck == nil || domainCheck.Status == "pending" || domainCheck.Status == "unchecked" || domainCheck.Status == "autoconfiguring" {
8181
return retry.RetryableError(errors.New("retry"))
8282
}
8383
return nil

0 commit comments

Comments
 (0)