github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-secret-inspect.1.md (about)

     1  % podman-secret-inspect(1)
     2  
     3  ## NAME
     4  podman\-secret\-inspect - Display detailed information on one or more secrets
     5  
     6  ## SYNOPSIS
     7  **podman secret inspect** [*options*] *secret* [...]
     8  
     9  ## DESCRIPTION
    10  
    11  Inspects the specified secret.
    12  
    13  By default, this renders all results in a JSON array. If a format is specified, the given template will be executed for each result.
    14  Secrets can be queried individually by providing their full name or a unique partial name.
    15  
    16  ## OPTIONS
    17  
    18  #### **--format**=*format*
    19  
    20  Format secret output using Go template.
    21  
    22  #### **--help**
    23  
    24  Print usage statement.
    25  
    26  
    27  ## EXAMPLES
    28  
    29  ```
    30  $ podman secret inspect mysecret
    31  $ podman secret inspect --format "{{.Name} {{.Scope}}" mysecret
    32  ```
    33  
    34  ## SEE ALSO
    35  **[podman(1)](podman.1.md)**, **[podman-secret(1)](podman-secret.1.md)**
    36  
    37  ## HISTORY
    38  January 2021, Originally compiled by Ashley Cui <acui@redhat.com>