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

{afd}default sku for waf creation #7715

Merged
merged 2 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/front-door/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Release History
===============
1.2.0
++++++
* change default value of sku in creating waf
1.1.1
++++++
* fix url bugs for US gov, edit new examples for log scurbbing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
options=["--sku"],
arg_group="Sku",
help="Name of the pricing tier.",
default="Premium_AzureFrontDoor",
enum={"Classic_AzureFrontDoor": "Classic_AzureFrontDoor", "Premium_AzureFrontDoor": "Premium_AzureFrontDoor", "Standard_AzureFrontDoor": "Standard_AzureFrontDoor"},
)
return cls._args_schema
Expand Down
2 changes: 1 addition & 1 deletion src/front-door/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages

VERSION = "1.1.1"
VERSION = "1.2.0"

CLASSIFIERS = [
'Development Status :: 4 - Beta',
Expand Down
Loading