Skip to content

Latest commit

 

History

History
90 lines (70 loc) · 2.4 KB

avi_saml_api_session.rst

File metadata and controls

90 lines (70 loc) · 2.4 KB

vmware.alb.avi_saml_api_session

Module for setup of SamlApiSession Avi RESTful Object

Parameter Choices/Defaults Comments
idp_class
str
required: true
- IDP class which will be used to authenticate session with that corresponding IDP such as Okta,
- Onelogin and Pingfederate. Currently, we support two idp classes OktaSAMLApiSession, OneloginSAMLApiSession.

- hosts: localhost
  connection: local
  collections:
    - vmware.alb
  vars:
    avi_credentials:
      username: "avi_user"
      password: "avi_password"
      controller: "192.168.138.18"
      api_version: "21.1.1"
  tasks:
    - name: Example to create SamlApiSession object
      avi_saml_api_session:
        avi_credentials: "{{ avi_credentials }}"
        state: present
        name: sample_saml_api_session

Authors