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

Update azure_rm_cdnprofile to include the Standard and Premium Frontdoor options #1588

Merged
merged 7 commits into from
Jul 1, 2024
4 changes: 3 additions & 1 deletion plugins/modules/azure_rm_cdnprofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
- standard_akamai
- standard_chinacdn
- standard_microsoft
- standard_azurefrontdoor
- premium_azurefrontdoor
state:
description:
- Assert the state of the CDN profile. Use C(present) to create or update a CDN profile and C(absent) to delete it.
Expand Down Expand Up @@ -129,7 +131,7 @@ def __init__(self):
),
sku=dict(
type='str',
choices=['standard_verizon', 'premium_verizon', 'custom_verizon', 'standard_akamai', 'standard_chinacdn', 'standard_microsoft']
choices=['standard_verizon', 'premium_verizon', 'custom_verizon', 'standard_akamai', 'standard_chinacdn', 'standard_microsoft', 'standard_azurefrontdoor', 'premium_azurefrontdoor']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

line too long (196 > 160 characters)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Appreciate the feedback! Changed. Curious if I missed where these type of requirements/coding standards are located? Happy to conform!

)
)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ azure-identity==1.14.0
azure-mgmt-authorization==2.0.0
azure-mgmt-apimanagement==3.0.0
azure-mgmt-batch==16.2.0
azure-mgmt-cdn==11.0.0
azure-mgmt-cdn==13.1.0
azure-mgmt-compute==30.6.0
azure-mgmt-containerinstance==9.0.0
azure-mgmt-core==1.4.0
Expand Down