You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starter kit content changes:
* Changed 'wasm32-wasi' target to 'wasm32-wasip1' (requires Rust 1.78 or later and Fastly CLI 11.0 or later)
* Changed rust-toolchain.toml to install 'stable' toolchain instead of '1.83.0'
* Moved term.color=always from scripts.build in fastly.toml to .cargo/config.toml
* Updated Rust edition from 2018 to 2021
* Changed Rust 'release' profile to use LTO
* Removed unnecessary parameters from scripts.build in fastly.toml
Other changes:
* Switched to using a reusable workflow for CI
description = "Connect to an identity provider such as Google using OAuth 2.0 and validate authentication status at the Edge, to authorize access to your edge or origin hosted applications."
description = "OpenID Connect (OIDC) discovery document containing OAuth 2.0 endpoints. This is usually obtained from https://YOUR_AUTH_SERVER/.well-known/openid-configuration"
47
53
input_type = "string"
48
-
54
+
49
55
[setup.config_stores.oauth_config.items.jwks]
50
56
description = "JSON Web Key Set (JWKS) containing the public keys used to verify the JWT signature. You can find this at the jwks_uri endpoint in the OIDC discovery document."
51
57
input_type = "string"
@@ -73,7 +79,7 @@ manifest_version = 3
73
79
key = "nonce_secret"
74
80
file = ".secret.nonce_secret"
75
81
76
-
# Optional client secret for certain IdPs' token endpoint.
82
+
# Optional client secret for certain IdPs' token endpoint.
77
83
# WARNING: Including this parameter produces NON-NORMATIVE OAuth 2.0 token requests.
0 commit comments