platform.ReverseProxy
Explore with Pulumi AI
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:
- Server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- Docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- Http
Port double - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- Https
Port double - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- Internal
Hostname 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 toNIGNIX
orAPACHE
- Public
Server stringName - 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 toNIGNIX
orAPACHE
- Ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- Ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- Server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- Docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- Http
Port float64 - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- Https
Port float64 - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- Internal
Hostname 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 toNIGNIX
orAPACHE
- Public
Server stringName - 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 toNIGNIX
orAPACHE
- Ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- Ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- server
Provider String - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- docker
Reverse StringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port Double - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port Double - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server StringName - 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 toNIGNIX
orAPACHE
- ssl
Certificate StringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key StringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https Boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port number - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port number - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server stringName - 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 toNIGNIX
orAPACHE
- ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- server_
provider str - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- docker_
reverse_ strproxy_ method - 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 toNIGNIX
orAPACHE
- https_
port float - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- 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 toNIGNIX
orAPACHE
- public_
server_ strname - 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 toNIGNIX
orAPACHE
- ssl_
certificate_ strpath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl_
key_ strpath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- server
Provider String - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- docker
Reverse StringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port Number - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port Number - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server StringName - 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 toNIGNIX
orAPACHE
- ssl
Certificate StringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key StringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https Boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
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.
- Docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- Http
Port double - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- Https
Port double - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- Internal
Hostname 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 toNIGNIX
orAPACHE
- Public
Server stringName - 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 toNIGNIX
orAPACHE
- Server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- Ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- Ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- Docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- Http
Port float64 - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- Https
Port float64 - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- Internal
Hostname 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 toNIGNIX
orAPACHE
- Public
Server stringName - 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 toNIGNIX
orAPACHE
- Server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- Ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- Ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- docker
Reverse StringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port Double - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port Double - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server StringName - 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 toNIGNIX
orAPACHE
- server
Provider String - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- ssl
Certificate StringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key StringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https Boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- docker
Reverse stringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port number - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port number - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server stringName - 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 toNIGNIX
orAPACHE
- server
Provider string - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- ssl
Certificate stringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key stringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- docker_
reverse_ strproxy_ method - 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 toNIGNIX
orAPACHE
- https_
port float - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- 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 toNIGNIX
orAPACHE
- public_
server_ strname - 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 toNIGNIX
orAPACHE
- server_
provider str - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- ssl_
certificate_ strpath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl_
key_ strpath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- 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 toNIGNIX
orAPACHE
- docker
Reverse StringProxy Method - Docker access method. The default value is SUBDOMAIN. Supported values: SUBDOMAIN, REPOPATHPREFIX, PORTPERREPO.
- http
Port Number - The port for access via HTTP. The default value is 80. Only settable when
server_provider
is set toNIGNIX
orAPACHE
- https
Port Number - The port for access via HTTPS. The default value is 443. Only settable when
use_https
is set totrue
- internal
Hostname 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 toNIGNIX
orAPACHE
- public
Server StringName - 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 toNIGNIX
orAPACHE
- server
Provider String - Set the server provider type. Supported values: DIRECT, NGINX, APACHE.
- ssl
Certificate StringPath - The full path of the certificate file on the web server, e.g.
/etc/ssl/certs/myserver.crt
. Must be set whenuse_https
is set totrue
- ssl
Key StringPath - The full path of the key file on the web server, e.g.
/etc/ssl/private/myserver.key
. Must be set whenuse_https
is set totrue
- use
Https Boolean - When set, Artifactory will be accessible via HTTPS at the corresponding port that is set. Only settable when
server_provider
is set toNIGNIX
orAPACHE
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.