diff --git a/okta/resource_okta_domain.go b/okta/resource_okta_domain.go index 25b7ca583..6955a8c27 100644 --- a/okta/resource_okta_domain.go +++ b/okta/resource_okta_domain.go @@ -40,6 +40,7 @@ func resourceDomain() *schema.Resource { "brand_id": { Type: schema.TypeString, Optional: true, + Computed: true, Description: "Brand id of the domain", }, "dns_records": { @@ -114,6 +115,8 @@ func resourceDomainRead(ctx context.Context, d *schema.ResourceData, m interface } d.Set("name", domain.GetDomain()) + d.Set("certificate_source_type", domain.GetCertificateSourceType()) + d.Set("brand_id", domain.GetBrandId()) if vd != nil { _ = d.Set("validation_status", vd.GetValidationStatus())