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

Fixed unauth client action enum. #118

Closed
wants to merge 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
cba76d9
refactor: remove redundant `--disable-workload-identity` (#4871)
bcho May 24, 2022
3c5cd8c
Hotfix ML extension for addressing endpoint issues (#4883)
harneetvirk May 24, 2022
3ed36c1
{AKS} Add trusted access roles command (#4838)
YitongFeng-git May 24, 2022
901a309
{AKS} Filter app gateway case (#4885)
FumingZhang May 24, 2022
18d9813
[storage-preview] `az storage account create`: Rename `--key-vault-fe…
evelyn-ys May 24, 2022
202adb0
remove preview tags for enterprise tier GA (#4886)
smile37773 May 24, 2022
e9f096f
[Release] Update index.json for extension [ storage-preview ] (#4889)
azclibot May 24, 2022
f52b0c9
chore(arcdata): version bump to 1.4.1 (#4892)
swells May 24, 2022
1464c39
[Release] Update index.json for extension [ aks-preview ] (#4887)
azclibot May 25, 2022
46399b6
aks-preview: feature support for web application routing (#4872)
yizhang4321 May 25, 2022
e102839
{AKS} Fix aks byo appgw test case (#4894)
FumingZhang May 25, 2022
3e75c2d
[Release] Update index.json for extension [ aks-preview ] (#4895)
azclibot May 25, 2022
8b0804d
Release ArcAppliance 0.2.23 (#4896)
saisankargochhayat May 26, 2022
e92f423
[Hardwaresecuritymodules] Bump up sdk and `az dedicated-hsm`: add par…
ZengTaoxu May 26, 2022
d7cbbdd
[Release] Update index.json for extension [ hardware-security-modules…
azclibot May 26, 2022
cd256d0
[Spring] Support setting marketplace plan when creating service (#4888)
yuwzho May 26, 2022
ac28513
[feat] Add support for --assign-public-endpoint and --enable-log-stre…
Descatles May 26, 2022
ebf59a2
Support probe feature in 0501-preview (#4899)
Caoxuyang May 26, 2022
acded17
{AKS} Add v2 managed cluster decorator (#4900)
FumingZhang May 27, 2022
f128de5
[Dataprotection] Onboard ResourceGuard and AzMon alerts (#4891)
akshayneema May 27, 2022
b92b83d
updated version in version.py (#4906)
akshayneema May 27, 2022
7a995fe
[Release] Update index.json for extension [ dataprotection ] (#4907)
azclibot May 28, 2022
c19eb8f
{AKS} Add Custom CA Trust to CLI (#4782)
UtheMan May 28, 2022
bb08dd8
[Release] Update index.json for extension [ aks-preview ] (#4909)
azclibot May 30, 2022
85ef8a1
{AKS} Integrate azuredisk csi driver version to cli (#4865)
mukhoakash May 30, 2022
c62273e
{aks-preview} Fixe typo Github to GitHub (#4913)
RakeshMohanMSFT May 31, 2022
b430ec0
[SSH] Remove setup.py from connectedmachine SDK folder (#4916)
vthiebaut10 Jun 1, 2022
33a77ae
[ConnectedMachine] bug fix: add enable-auto-upgrade param back to ext…
dorothyhu Jun 1, 2022
d47de83
Prompt when disabling CSI Drivers (#4868)
ZeroMagic Jun 2, 2022
aa1d0b4
Use remote Kustomize base for deploying AKS Periscope (#4904)
peterbom Jun 2, 2022
38f1124
[Web PubSub] Allow newer versions of websockets (#4911)
asottile Jun 2, 2022
d9ab65a
{AKS} Fix several tests (#4919)
FumingZhang Jun 2, 2022
6dbf738
{AKS} Vendor 2022-05-02-preview for aks-preview (#4923)
FumingZhang Jun 2, 2022
1597b52
Updated enum.
Jun 2, 2022
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
Prev Previous commit
Updated enum.
Haroon Feisal committed Jun 2, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 1597b52e792e967c20464f7531e9291b7f8a883b
2 changes: 1 addition & 1 deletion src/containerapp/azext_containerapp/_constants.py
Original file line number Diff line number Diff line change
@@ -21,6 +21,6 @@
MSA_SECRET_SETTING_NAME = "msa-provider-authentication-secret"
TWITTER_SECRET_SETTING_NAME = "twitter-provider-authentication-secret"
APPLE_SECRET_SETTING_NAME = "apple-provider-authentication-secret"
UNAUTHENTICATED_CLIENT_ACTION = ['RedirectToLoginPage', 'AllowAnonymous', 'RejectWith401', 'RejectWith404']
UNAUTHENTICATED_CLIENT_ACTION = ['RedirectToLoginPage', 'AllowAnonymous', 'Return401', 'Return403']
FORWARD_PROXY_CONVENTION = ['NoProxy', 'Standard', 'Custom']
CHECK_CERTIFICATE_NAME_AVAILABILITY_TYPE = "Microsoft.App/managedEnvironments/certificates"