Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,170 for presenter (0.16 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.presenter
                        value:
                          stringMatch:
                            suffix: -suffix-presenter
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.presenter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

              notValues: ["not-audiences", "not-audiences-prefix-*", "*-not-suffix-audiences", "*"]
            - key: "request.auth.presenter"
              values: ["presenter", "presenter-prefix-*", "*-suffix-presenter", "*"]
              notValues: ["not-presenter", "not-presenter-prefix-*", "*-not-suffix-presenter", "*"]
            - key: "request.auth.claims[iss]"
              values: ["iss", "iss-prefix-*", "*-suffix-iss", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

          notValues: ["not-audiences", "not-audiences-prefix-*", "*-not-suffix-audiences", "*"]
      - when:
        - key: "request.auth.presenter"
          values: ["presenter", "presenter-prefix-*", "*-suffix-presenter", "*"]
          notValues: ["not-presenter", "not-presenter-prefix-*", "*-not-suffix-presenter", "*"]
      - when:
        - key: "request.auth.claims[iss]"
          values: ["iss", "iss-prefix-*", "*-suffix-iss", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-in.yaml

            notValues: ["not-requestPrincipals"]
          - key: "request.auth.audiences"
            values: ["audiences"]
            notValues: ["not-audiences"]
          - key: "request.auth.presenter"
            values: ["presenter"]
            notValues: ["not-presenter"]
          - key: "request.auth.claims[iss]"
            values: ["iss"]
            notValues: ["not-iss"]
          - key: "destination.ip"
            values: ["10.10.10.10"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    # - Allow request with permission claim of "write" or "append" to access path /permission
    # - Allow request with valid JWT token to access path /jwt1
    # - Allow request with valid JWT token of presenter bar to access path with suffix "/presenter"
    # - Allow request with valid JWT token of audiences foo to access path with suffix "/audiences"
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                                - stringMatch:
                                    exact: presenter
                                - stringMatch:
                                    prefix: presenter-prefix-
                                - stringMatch:
                                    suffix: -suffix-presenter
                                - stringMatch:
                                    safeRegex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            notValues: ["not-requestPrincipals"]
          - key: "request.auth.audiences"
            values: ["audiences"]
            notValues: ["not-audiences"]
          - key: "request.auth.presenter"
            values: ["presenter"]
            notValues: ["not-presenter"]
          - key: "request.auth.claims[iss]"
            values: ["iss"]
            notValues: ["not-iss"]
          - key: "destination.ip"
            values: ["10.10.10.10"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. pkg/config/security/security.go

    	attrRequestAudiences = "request.auth.audiences" // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter" // authorized presenter of the credential.
    	attrRequestClaims    = "request.auth.claims"    // claim name is surrounded by brackets, e.g. "request.auth.claims[iss]".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/generator_test.go

    		},
    		{
    			name:  "requestPresenterGenerator",
    			g:     requestPresenterGenerator{},
    			key:   "request.auth.presenter",
    			value: "foo",
    			want: yamlPrincipal(t, `
             metadata:
              filter: istio_authn
              path:
              - key: request.auth.presenter
              value:
                stringMatch:
                  exact: foo`),
    		},
    		{
    			name:  "requestHeaderGenerator",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/model.go

    	attrRequestAudiences = "request.auth.audiences"      // intended audience(s) for this authentication information.
    	attrRequestPresenter = "request.auth.presenter"      // authorized presenter of the credential.
    	attrRequestClaims    = "request.auth.claims"         // claim name is surrounded by brackets, e.g. "request.auth.claims[iss]".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top