Skip to content

Latest commit

 

History

History
415 lines (395 loc) · 16.6 KB

File metadata and controls

415 lines (395 loc) · 16.6 KB

vmware.alb.avi_jwtserverprofile

Module for setup of JWTServerProfile Avi RESTful Object

Parameter Choices/Defaults Comments
state
str
  • absent
  • present ←
- The state that should be applied on the entity.
avi_api_update_method
str
  • put ←
  • patch
- Default method for object update is HTTP PUT.
- Setting to patch will override that behavior to use HTTP PATCH.
avi_api_patch_op
str
  • add ←
  • replace
  • delete
  • remove
- Patch operation to use when using avi_api_update_method as patch.
avi_patch_path
str
- Patch path to use when using avi_api_update_method as patch.
avi_patch_value
str
- Patch value to use when using avi_api_update_method as patch.
configpb_attributes
dict
- Protobuf versioning for config pbs.
- Field introduced in 21.1.1.
- Allowed in enterprise edition with any value, essentials edition with any value, basic edition with any value, enterprise with cloud services
- edition.
controller_internal_auth
dict
- Jwt auth configuration for profile_type controller_internal_auth.
- Field introduced in 20.1.6.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
is_federated
bool
- This field describes the object's replication scope.
- If the field is set to false, then the object is visible within the controller-cluster.
- If the field is set to true, then the object is replicated across the federation.
- Field introduced in 20.1.6.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
- Default value when not specified in API or module is interpreted by Avi Controller as False.
issuer
str
- Uniquely identifiable name of the token issuer, only allowed with profile_type client_auth.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
jwks_keys
str
- Jwks key set used for validating the jwt, only allowed with profile_type client_auth.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
jwt_profile_type
str
- Type of jwt server profile which defines the usage type.
- Enum options - CLIENT_AUTH, CONTROLLER_INTERNAL_AUTH.
- Field introduced in 20.1.6.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
- Default value when not specified in API or module is interpreted by Avi Controller as CLIENT_AUTH.
name
str
required: true
- Name of the jwt profile.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
tenant_ref
str
- Uuid of the tenant.
- It is a reference to an object of type tenant.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.
url
str
- Avi controller URL of the object.
uuid
str
- Uuid of the jwtprofile.
- Field introduced in 20.1.3.
- Allowed in enterprise edition with any value, enterprise with cloud services edition.

- 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 JWTServerProfile object
      avi_jwtserverprofile:
        avi_credentials: "{{ avi_credentials }}"
        state: present
        name: sample_jwtserverprofile

Authors