1. Packages
  2. Platform Provider
  3. API Docs
  4. ReverseProxy
platform 2.2.1 published on Friday, Mar 7, 2025 by jfrog

platform.ReverseProxy

Explore with Pulumi AI

platform logo
platform 2.2.1 published on Friday, Mar 7, 2025 by jfrog

    Provides a JFrog Reverse Proxy resource.

    ~>Only available for self-hosted instances.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      my-reverse-proxy:
        type: platform:ReverseProxy
        properties:
          dockerReverseProxyMethod: SUBDOMAIN
          httpPort: 80
          httpsPort: 443
          internalHostname: localhost
          publicServerName: jfrog.com
          serverNameExpression: '*.jfrog.com'
          serverProvider: NGINX
          sslCertificatePath: /etc/ssl/certs/myserver.crt
          sslKeyPath: /etc/ssl/private/myserver.key
          useHttps: true
    

    Create ReverseProxy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ReverseProxy(name: string, args: ReverseProxyArgs, opts?: CustomResourceOptions);
    @overload
    def ReverseProxy(resource_name: str,
                     args: ReverseProxyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ReverseProxy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     server_provider: Optional[str] = None,
                     docker_reverse_proxy_method: Optional[str] = None,
                     http_port: Optional[float] = None,
                     https_port: Optional[float] = None,
                     internal_hostname: Optional[str] = None,
                     public_server_name: Optional[str] = None,
                     ssl_certificate_path: Optional[str] = None,
                     ssl_key_path: Optional[str] = None,
                     use_https: Optional[bool] = None)
    func NewReverseProxy(ctx *Context, name string, args ReverseProxyArgs, opts ...ResourceOption) (*ReverseProxy, error)
    public ReverseProxy(string name, ReverseProxyArgs args, CustomResourceOptions? opts = null)
    public ReverseProxy(String name, ReverseProxyArgs args)
    public ReverseProxy(String name, ReverseProxyArgs args, CustomResourceOptions options)
    
    type: platform:ReverseProxy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ReverseProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ReverseProxyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ReverseProxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReverseProxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReverseProxyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var reverseProxyResource = new Platform.ReverseProxy("reverseProxyResource", new()
    {
        ServerProvider = "string",
        DockerReverseProxyMethod = "string",
        HttpPort = 0,
        HttpsPort = 0,
        InternalHostname = "string",
        PublicServerName = "string",
        SslCertificatePath = "string",
        SslKeyPath = "string",
        UseHttps = false,
    });
    
    example, err := platform.NewReverseProxy(ctx, "reverseProxyResource", &platform.ReverseProxyArgs{
    ServerProvider: pulumi.String("string"),
    DockerReverseProxyMethod: pulumi.String("string"),
    HttpPort: pulumi.Float64(0),
    HttpsPort: pulumi.Float64(0),
    InternalHostname: pulumi.String("string"),
    PublicServerName: pulumi.String("string"),
    SslCertificatePath: pulumi.String("string"),
    SslKeyPath: pulumi.String("string"),
    UseHttps: pulumi.Bool(false),
    })
    
    var reverseProxyResource = new ReverseProxy("reverseProxyResource", ReverseProxyArgs.builder()
        .serverProvider("string")
        .dockerReverseProxyMethod("string")
        .httpPort(0)
        .httpsPort(0)
        .internalHostname("string")
        .publicServerName("string")
        .sslCertificatePath("string")
        .sslKeyPath("string")
        .useHttps(false)
        .build());
    
    reverse_proxy_resource = platform.ReverseProxy("reverseProxyResource",
        server_provider="string",
        docker_reverse_proxy_method="string",
        http_port=0,
        https_port=0,
        internal_hostname="string",
        public_server_name="string",
        ssl_certificate_path="string",
        ssl_key_path="string",
        use_https=False)
    
    const reverseProxyResource = new platform.ReverseProxy("reverseProxyResource", {
        serverProvider: "string",
        dockerReverseProxyMethod: "string",
        httpPort: 0,
        httpsPort: 0,
        internalHostname: "string",
        publicServerName: "string",
        sslCertificatePath: "string",
        sslKeyPath: "string",
        useHttps: false,
    });
    
    type: platform:ReverseProxy
    properties:
        dockerReverseProxyMethod: string
        httpPort: 0
        httpsPort: 0
        internalHostname: string
        publicServerName: string
        serverProvider: string
        sslCertificatePath: string
        sslKeyPath: string
        useHttps: false
    

    ReverseProxy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ReverseProxy resource accepts the following input properties:

    ServerProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    DockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    HttpPort double
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    HttpsPort double
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    InternalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    PublicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    SslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    SslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    UseHttps bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    ServerProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    DockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    HttpPort float64
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    HttpsPort float64
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    InternalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    PublicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    SslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    SslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    UseHttps bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    serverProvider String
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    dockerReverseProxyMethod String
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort Double
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort Double
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname String
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName String
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    sslCertificatePath String
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath String
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps Boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    serverProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    dockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort number
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort number
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    sslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    server_provider str
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    docker_reverse_proxy_method str
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    http_port float
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    https_port float
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internal_hostname str
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    public_server_name str
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    ssl_certificate_path str
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    ssl_key_path str
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    use_https bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    serverProvider String
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    dockerReverseProxyMethod String
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort Number
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort Number
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname String
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName String
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    sslCertificatePath String
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath String
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps Boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ReverseProxy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ReverseProxy Resource

    Get an existing ReverseProxy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ReverseProxyState, opts?: CustomResourceOptions): ReverseProxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            docker_reverse_proxy_method: Optional[str] = None,
            http_port: Optional[float] = None,
            https_port: Optional[float] = None,
            internal_hostname: Optional[str] = None,
            public_server_name: Optional[str] = None,
            server_provider: Optional[str] = None,
            ssl_certificate_path: Optional[str] = None,
            ssl_key_path: Optional[str] = None,
            use_https: Optional[bool] = None) -> ReverseProxy
    func GetReverseProxy(ctx *Context, name string, id IDInput, state *ReverseProxyState, opts ...ResourceOption) (*ReverseProxy, error)
    public static ReverseProxy Get(string name, Input<string> id, ReverseProxyState? state, CustomResourceOptions? opts = null)
    public static ReverseProxy get(String name, Output<String> id, ReverseProxyState state, CustomResourceOptions options)
    resources:  _:    type: platform:ReverseProxy    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    HttpPort double
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    HttpsPort double
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    InternalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    PublicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    ServerProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    SslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    SslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    UseHttps bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    DockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    HttpPort float64
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    HttpsPort float64
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    InternalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    PublicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    ServerProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    SslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    SslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    UseHttps bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    dockerReverseProxyMethod String
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort Double
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort Double
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname String
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName String
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    serverProvider String
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    sslCertificatePath String
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath String
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps Boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    dockerReverseProxyMethod string
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort number
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort number
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname string
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName string
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    serverProvider string
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    sslCertificatePath string
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath string
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    docker_reverse_proxy_method str
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    http_port float
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    https_port float
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internal_hostname str
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    public_server_name str
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    server_provider str
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    ssl_certificate_path str
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    ssl_key_path str
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    use_https bool
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE
    dockerReverseProxyMethod String
    Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
    httpPort Number
    The port for access via HTTP. The default value is 80. Only settable when server_provider is set to NIGNIX or APACHE
    httpsPort Number
    The port for access via HTTPS. The default value is 443. Only settable when use_https is set to true
    internalHostname String
    The internal server name for Artifactory which will be used by the web server to access the Artifactory machine. If the web server is installed on the same machine as Artifactory you can use localhost, otherwise use the IP or hostname. Must be set when server_provider is set to NIGNIX or APACHE
    publicServerName String
    The server name that will be used to access Artifactory. Should be correlated with the base URL value. Must be set when server_provider is set to NIGNIX or APACHE
    serverProvider String
    Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
    sslCertificatePath String
    The full path of the certificate file on the web server, e.g. /etc/ssl/certs/myserver.crt. Must be set when use_https is set to true
    sslKeyPath String
    The full path of the key file on the web server, e.g. /etc/ssl/private/myserver.key. Must be set when use_https is set to true
    useHttps Boolean
    When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when server_provider is set to NIGNIX or APACHE

    Import

    $ pulumi import platform:index/reverseProxy:ReverseProxy my-reverse-proxy DIRECT
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    platform jfrog/terraform-provider-platform
    License
    Notes
    This Pulumi package is based on the platform Terraform Provider.
    platform logo
    platform 2.2.1 published on Friday, Mar 7, 2025 by jfrog