ves-io-schema-authentication-API-Create
On This Page:
Examples of creating authentication
Usecase:
Create apigw-config-1
Request using vesctl:
vesctl configuration create authentication -i authentication.yaml
where file authentication.yaml has following contents (authentication.CreateRequest):
metadata:
name: apigw-1
namespace: documentation
spec:
cookieParams:
cookieExpiry: 3600
cookieRefreshInterval: 3000
sessionExpiry: 3600
oidcAuth:
clientSecret:
clearSecretInfo:
url: string://<base64>
oidcClientId: oidc-google-clientid
oidcWellKnownConfigUrl: https://www.google.com/well_known/config
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: apigw-1
namespace: documentation
spec:
cookieParams:
cookieExpiry: 3600
cookieRefreshInterval: 3000
sessionExpiry: 3600
oidcAuth:
clientSecret:
clearSecretInfo:
url: string://<base64>
oidcClientId: oidc-google-clientid
oidcWellKnownConfigUrl: https://www.google.com/well_known/config
systemMetadata:
creationTimestamp: "2021-01-20T19:16:24.392187800Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: da76f970-b43e-492d-920f-22afc9b30284
Request using curl:
curl -X 'POST' -d '{"metadata":{"name":"apigw-1","namespace":"documentation"},"spec":{"oidcAuth":{"oidcWellKnownConfigUrl":"https://www.google.com/well_known/config","oidcClientId":"oidc-google-clientid","clientSecret":{"clearSecretInfo":{"url":"string://\u003cbase64\u003e"}}},"cookieParams":{"cookieRefreshInterval":3000,"cookieExpiry":3600,"sessionExpiry":3600}}}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build231703991_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/authentications'
curl response:
HTTP/1.1 200 OK
Content-Length: 1114
Content-Type: application/json
Date: Wed, 20 Jan 2021 19:16:24 GMT
Vary: Accept-Encoding
{
"metadata": {
"name": "apigw-1",
"namespace": "documentation",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "da76f970-b43e-492d-920f-22afc9b30284",
"creation_timestamp": "2021-01-20T19:16:24.392187800Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"oidc_auth": {
"oidc_well_known_config_url": "https://www.google.com/well_known/config",
"oidc_client_id": "oidc-google-clientid",
"client_secret": {
"clear_secret_info": {
"provider": "",
"url": "string://\u003cbase64\u003e"
},
"blindfold_secret_info_internal": null,
"secret_encoding_type": "EncodingNone"
}
},
"cookie_params": {
"cookie_refresh_interval": 3000,
"cookie_expiry": 3600,
"session_expiry": 3600
}
}
}