-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 Resources:] azurerm_cdn_frontdoor_route
, azurerm_cdn_frontdoor_custom_domain
and azurerm_cdn_route_disable_link_to_default_domain
#18231
Changes from 20 commits
4adc4fd
7fa2ef1
4f07464
2d53920
091ec75
6fd2929
0102ca4
f532bfe
7861b5e
5a7b52d
89341d6
afe979e
ed5e6c9
a841836
15babb5
26e05bf
f5fef88
44b5a74
43abd6d
68ffab3
83a56f0
7699d08
e8ae841
270310a
a8dd8b4
5b221dc
4da369c
0fad210
70ada7a
6774427
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,306 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
package cdn | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||||
"time" | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2020-09-01/cdn" | ||||||||||||||||||||||||||||||||||||||||||||||
track1 "github.com/Azure/azure-sdk-for-go/services/cdn/mgmt/2021-06-01/cdn" | ||||||||||||||||||||||||||||||||||||||||||||||
dnsValidate "github.com/hashicorp/go-azure-sdk/resource-manager/dns/2018-05-01/zones" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/helpers/tf" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/clients" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/cdn/parse" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/cdn/validate" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" | ||||||||||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/utils" | ||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func resourceCdnFrontDoorCustomDomain() *pluginsdk.Resource { | ||||||||||||||||||||||||||||||||||||||||||||||
return &pluginsdk.Resource{ | ||||||||||||||||||||||||||||||||||||||||||||||
Create: resourceCdnFrontDoorCustomDomainCreate, | ||||||||||||||||||||||||||||||||||||||||||||||
Read: resourceCdnFrontDoorCustomDomainRead, | ||||||||||||||||||||||||||||||||||||||||||||||
Update: resourceCdnFrontDoorCustomDomainUpdate, | ||||||||||||||||||||||||||||||||||||||||||||||
Delete: resourceCdnFrontDoorCustomDomainDelete, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
Timeouts: &pluginsdk.ResourceTimeout{ | ||||||||||||||||||||||||||||||||||||||||||||||
// NOTE: These timeouts are extreamly long due to the manual | ||||||||||||||||||||||||||||||||||||||||||||||
// step of approving the private link if defined. | ||||||||||||||||||||||||||||||||||||||||||||||
Create: pluginsdk.DefaultTimeout(12 * time.Hour), | ||||||||||||||||||||||||||||||||||||||||||||||
Read: pluginsdk.DefaultTimeout(5 * time.Minute), | ||||||||||||||||||||||||||||||||||||||||||||||
Update: pluginsdk.DefaultTimeout(24 * time.Hour), | ||||||||||||||||||||||||||||||||||||||||||||||
Delete: pluginsdk.DefaultTimeout(12 * time.Hour), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
Importer: pluginsdk.ImporterValidatingResourceId(func(id string) error { | ||||||||||||||||||||||||||||||||||||||||||||||
_, err := parse.FrontdoorCustomDomainID(id) | ||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||
}), | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
Schema: map[string]*pluginsdk.Schema{ | ||||||||||||||||||||||||||||||||||||||||||||||
"name": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ForceNew: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validate.FrontDoorCustomDomainName, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
// NOTE: I need this fake field because I need the profile name during the create operation | ||||||||||||||||||||||||||||||||||||||||||||||
"cdn_frontdoor_profile_id": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ForceNew: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validate.FrontDoorProfileID, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"dns_zone_id": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: dnsValidate.ValidateDnsZoneID, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"domain_validation_state": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Computed: true, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we don't expose the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was a left over field from when I had the validators exposed, missed it when I removed them. Fixed. |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"host_name": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
ForceNew: true, | ||||||||||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"pre_validated_cdn_frontdoor_custom_domain_id": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validate.FrontDoorCustomDomainID, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"tls": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeList, | ||||||||||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||||||||||
MaxItems: 1, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
Elem: &pluginsdk.Resource{ | ||||||||||||||||||||||||||||||||||||||||||||||
Schema: map[string]*pluginsdk.Schema{ | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"certificate_type": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||||||||||||||||||||
Default: string(cdn.AfdCertificateTypeManagedCertificate), | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validation.StringInSlice([]string{ | ||||||||||||||||||||||||||||||||||||||||||||||
string(cdn.AfdCertificateTypeCustomerCertificate), | ||||||||||||||||||||||||||||||||||||||||||||||
string(cdn.AfdCertificateTypeManagedCertificate), | ||||||||||||||||||||||||||||||||||||||||||||||
}, false), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"minimum_tls_version": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||||||||||||||||||||
Default: string(cdn.AfdMinimumTLSVersionTLS12), | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validation.StringInSlice([]string{ | ||||||||||||||||||||||||||||||||||||||||||||||
string(cdn.AfdMinimumTLSVersionTLS10), | ||||||||||||||||||||||||||||||||||||||||||||||
string(cdn.AfdMinimumTLSVersionTLS12), | ||||||||||||||||||||||||||||||||||||||||||||||
}, false), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"cdn_frontdoor_secret_id": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Optional: true, | ||||||||||||||||||||||||||||||||||||||||||||||
Computed: true, | ||||||||||||||||||||||||||||||||||||||||||||||
ValidateFunc: validate.FrontDoorSecretID, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"expiration_date": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Computed: true, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
"validation_token": { | ||||||||||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||||||||||
Computed: true, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func resourceCdnFrontDoorCustomDomainCreate(d *pluginsdk.ResourceData, meta interface{}) error { | ||||||||||||||||||||||||||||||||||||||||||||||
client := meta.(*clients.Client).Cdn.FrontDoorCustomDomainsClient | ||||||||||||||||||||||||||||||||||||||||||||||
ctx, cancel := timeouts.ForCreate(meta.(*clients.Client).StopContext, d) | ||||||||||||||||||||||||||||||||||||||||||||||
defer cancel() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
profileId, err := parse.FrontDoorProfileID(d.Get("cdn_frontdoor_profile_id").(string)) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
id := parse.NewFrontdoorCustomDomainID(profileId.SubscriptionId, profileId.ResourceGroup, profileId.ProfileName, d.Get("name").(string)) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if d.IsNewResource() { | ||||||||||||||||||||||||||||||||||||||||||||||
existing, err := client.Get(ctx, id.ResourceGroup, id.ProfileName, id.CustomDomainName) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
if !utils.ResponseWasNotFound(existing.Response) { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("checking for existing %s: %+v", id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if !utils.ResponseWasNotFound(existing.Response) { | ||||||||||||||||||||||||||||||||||||||||||||||
return tf.ImportAsExistsError("azurerm_cdn_frontdoor_custom_domain", id.ID()) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is only a Create method so we can remove this since it'll always be true:
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
props := track1.AFDDomain{ | ||||||||||||||||||||||||||||||||||||||||||||||
AFDDomainProperties: &track1.AFDDomainProperties{ | ||||||||||||||||||||||||||||||||||||||||||||||
HostName: utils.String(d.Get("host_name").(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
AzureDNSZone: expandResourceReference(d.Get("dns_zone_id").(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
PreValidatedCustomDomainResourceID: expandResourceReference(d.Get("pre_validated_cdn_frontdoor_custom_domain_id").(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
TLSSettings: expandCdnFrontdoorCustomDomainHttpsParameters(d.Get("tls").([]interface{})), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
future, err := client.Create(ctx, id.ResourceGroup, id.ProfileName, id.CustomDomainName, props) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("creating %s: %+v", id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err = future.WaitForCompletionRef(ctx, client.Client); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("waiting for the creation of %s: %+v", id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
d.SetId(id.ID()) | ||||||||||||||||||||||||||||||||||||||||||||||
return resourceCdnFrontDoorCustomDomainRead(d, meta) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func resourceCdnFrontDoorCustomDomainRead(d *pluginsdk.ResourceData, meta interface{}) error { | ||||||||||||||||||||||||||||||||||||||||||||||
client := meta.(*clients.Client).Cdn.FrontDoorCustomDomainsClient | ||||||||||||||||||||||||||||||||||||||||||||||
ctx, cancel := timeouts.ForRead(meta.(*clients.Client).StopContext, d) | ||||||||||||||||||||||||||||||||||||||||||||||
defer cancel() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
id, err := parse.FrontdoorCustomDomainID(d.Id()) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
resp, err := client.Get(ctx, id.ResourceGroup, id.ProfileName, id.CustomDomainName) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
if utils.ResponseWasNotFound(resp.Response) { | ||||||||||||||||||||||||||||||||||||||||||||||
d.SetId("") | ||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("retrieving %s: %+v", id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
d.Set("name", id.CustomDomainName) | ||||||||||||||||||||||||||||||||||||||||||||||
d.Set("cdn_frontdoor_profile_id", parse.NewFrontDoorProfileID(id.SubscriptionId, id.ResourceGroup, id.ProfileName).ID()) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if props := resp.AFDDomainProperties; props != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
d.Set("domain_validation_state", props.DomainValidationState) | ||||||||||||||||||||||||||||||||||||||||||||||
d.Set("host_name", props.HostName) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err := d.Set("dns_zone_id", flattenResourceReference(props.AzureDNSZone)); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("setting `dns_zone_id`: %+v", err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err := d.Set("pre_validated_cdn_frontdoor_custom_domain_id", flattenResourceReference(props.PreValidatedCustomDomainResourceID)); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("setting `pre_validated_cdn_frontdoor_custom_domain_id`: %+v", err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err := d.Set("tls", flattenCustomDomainAFDDomainHttpsParameters(props.TLSSettings)); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("setting `tls`: %+v", err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if validationProps := props.ValidationProperties; validationProps != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
d.Set("expiration_date", validationProps.ExpirationDate) | ||||||||||||||||||||||||||||||||||||||||||||||
d.Set("validation_token", validationProps.ValidationToken) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func resourceCdnFrontDoorCustomDomainUpdate(d *pluginsdk.ResourceData, meta interface{}) error { | ||||||||||||||||||||||||||||||||||||||||||||||
client := meta.(*clients.Client).Cdn.FrontDoorCustomDomainsClient | ||||||||||||||||||||||||||||||||||||||||||||||
ctx, cancel := timeouts.ForUpdate(meta.(*clients.Client).StopContext, d) | ||||||||||||||||||||||||||||||||||||||||||||||
defer cancel() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
id, err := parse.FrontdoorCustomDomainID(d.Id()) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
props := track1.AFDDomainUpdateParameters{ | ||||||||||||||||||||||||||||||||||||||||||||||
AFDDomainUpdatePropertiesParameters: &track1.AFDDomainUpdatePropertiesParameters{ | ||||||||||||||||||||||||||||||||||||||||||||||
AzureDNSZone: expandResourceReference(d.Get("dns_zone_id").(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
PreValidatedCustomDomainResourceID: expandResourceReference(d.Get("pre_validated_cdn_frontdoor_custom_domain_id").(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
TLSSettings: expandCdnFrontdoorCustomDomainHttpsParameters(d.Get("tls").([]interface{})), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since there's 3 of these and this is a separate update method, can we conditionally set these (using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
future, err := client.Update(ctx, id.ResourceGroup, id.ProfileName, id.CustomDomainName, props) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("updating %s: %+v", *id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err = future.WaitForCompletionRef(ctx, client.Client); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("waiting for the update of %s: %+v", *id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return resourceCdnFrontDoorCustomDomainRead(d, meta) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func resourceCdnFrontDoorCustomDomainDelete(d *pluginsdk.ResourceData, meta interface{}) error { | ||||||||||||||||||||||||||||||||||||||||||||||
client := meta.(*clients.Client).Cdn.FrontDoorCustomDomainsClient | ||||||||||||||||||||||||||||||||||||||||||||||
ctx, cancel := timeouts.ForDelete(meta.(*clients.Client).StopContext, d) | ||||||||||||||||||||||||||||||||||||||||||||||
defer cancel() | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
id, err := parse.FrontdoorCustomDomainID(d.Id()) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
future, err := client.Delete(ctx, id.ResourceGroup, id.ProfileName, id.CustomDomainName) | ||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("deleting %s: %+v", *id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
if err = future.WaitForCompletionRef(ctx, client.Client); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("waiting for the deletion of %s: %+v", *id, err) | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func expandCdnFrontdoorCustomDomainHttpsParameters(input []interface{}) *track1.AFDDomainHTTPSParameters { | ||||||||||||||||||||||||||||||||||||||||||||||
if len(input) == 0 || input[0] == nil { | ||||||||||||||||||||||||||||||||||||||||||||||
// NOTE: With the Frontdoor service, they do not treat an empty object like an empty object | ||||||||||||||||||||||||||||||||||||||||||||||
// if it is not nil they assume it is fully defined and then end up throwing errors when they | ||||||||||||||||||||||||||||||||||||||||||||||
// attempt to get a value from one of the fields. | ||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
v := input[0].(map[string]interface{}) | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return &track1.AFDDomainHTTPSParameters{ | ||||||||||||||||||||||||||||||||||||||||||||||
CertificateType: track1.AfdCertificateType(v["certificate_type"].(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
MinimumTLSVersion: track1.AfdMinimumTLSVersion(v["minimum_tls_version"].(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
Secret: expandResourceReference(v["cdn_frontdoor_secret_id"].(string)), | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
func flattenCustomDomainAFDDomainHttpsParameters(input *track1.AFDDomainHTTPSParameters) []interface{} { | ||||||||||||||||||||||||||||||||||||||||||||||
if input == nil { | ||||||||||||||||||||||||||||||||||||||||||||||
return []interface{}{} | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||
return []interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||
map[string]interface{}{ | ||||||||||||||||||||||||||||||||||||||||||||||
"cdn_frontdoor_secret_id": flattenResourceReference(input.Secret), | ||||||||||||||||||||||||||||||||||||||||||||||
"certificate_type": string(input.CertificateType), | ||||||||||||||||||||||||||||||||||||||||||||||
"minimum_tls_version": string(input.MinimumTLSVersion), | ||||||||||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why are we importing two versions of
cdn
here, can we not use one?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.