published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
HTTP DELETE method not available Terraform will no longer manage this resource on
destroybut the configuration will still be present on the Dynatrace cluster.
This resource requires the cluster API token scope Service Provider API (
ServiceProviderAPI)
Dynatrace Documentation
Dynatrace Managed - https://www.dynatrace.com/support/help/managed-cluster
Cluster API v1 - https://www.dynatrace.com/support/help/managed-cluster/cluster-api/cluster-api-v1
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const test = new dynatrace.ManagedPublicEndpoints("Test", {
webUiAddress: "https://www.webuiaddress.com",
additionalWebUiAddresses: [
"https://www.webuiaddress1.com",
"https://www.webuiaddress2.com",
],
beaconForwarderAddress: "https://www.beaconforwarderaddress.com:443",
cdnAddress: "https://www.cdnaddress.com",
});
import pulumi
import pulumiverse_dynatrace as dynatrace
test = dynatrace.ManagedPublicEndpoints("Test",
web_ui_address="https://www.webuiaddress.com",
additional_web_ui_addresses=[
"https://www.webuiaddress1.com",
"https://www.webuiaddress2.com",
],
beacon_forwarder_address="https://www.beaconforwarderaddress.com:443",
cdn_address="https://www.cdnaddress.com")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewManagedPublicEndpoints(ctx, "Test", &dynatrace.ManagedPublicEndpointsArgs{
WebUiAddress: pulumi.String("https://www.webuiaddress.com"),
AdditionalWebUiAddresses: pulumi.StringArray{
pulumi.String("https://www.webuiaddress1.com"),
pulumi.String("https://www.webuiaddress2.com"),
},
BeaconForwarderAddress: pulumi.String("https://www.beaconforwarderaddress.com:443"),
CdnAddress: pulumi.String("https://www.cdnaddress.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var test = new Dynatrace.ManagedPublicEndpoints("Test", new()
{
WebUiAddress = "https://www.webuiaddress.com",
AdditionalWebUiAddresses = new[]
{
"https://www.webuiaddress1.com",
"https://www.webuiaddress2.com",
},
BeaconForwarderAddress = "https://www.beaconforwarderaddress.com:443",
CdnAddress = "https://www.cdnaddress.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.ManagedPublicEndpoints;
import com.pulumi.dynatrace.ManagedPublicEndpointsArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ManagedPublicEndpoints("test", ManagedPublicEndpointsArgs.builder()
.webUiAddress("https://www.webuiaddress.com")
.additionalWebUiAddresses(
"https://www.webuiaddress1.com",
"https://www.webuiaddress2.com")
.beaconForwarderAddress("https://www.beaconforwarderaddress.com:443")
.cdnAddress("https://www.cdnaddress.com")
.build());
}
}
resources:
test:
type: dynatrace:ManagedPublicEndpoints
name: Test
properties:
webUiAddress: https://www.webuiaddress.com
additionalWebUiAddresses:
- https://www.webuiaddress1.com
- https://www.webuiaddress2.com
beaconForwarderAddress: https://www.beaconforwarderaddress.com:443
cdnAddress: https://www.cdnaddress.com
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_managedpublicendpoints" "Test" {
web_ui_address = "https://www.webuiaddress.com"
additional_web_ui_addresses = ["https://www.webuiaddress1.com", "https://www.webuiaddress2.com"]
beacon_forwarder_address = "https://www.beaconforwarderaddress.com:443"
cdn_address = "https://www.cdnaddress.com"
}
Create ManagedPublicEndpoints Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedPublicEndpoints(name: string, args?: ManagedPublicEndpointsArgs, opts?: CustomResourceOptions);@overload
def ManagedPublicEndpoints(resource_name: str,
args: Optional[ManagedPublicEndpointsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedPublicEndpoints(resource_name: str,
opts: Optional[ResourceOptions] = None,
additional_web_ui_addresses: Optional[Sequence[str]] = None,
beacon_forwarder_address: Optional[str] = None,
cdn_address: Optional[str] = None,
web_ui_address: Optional[str] = None)func NewManagedPublicEndpoints(ctx *Context, name string, args *ManagedPublicEndpointsArgs, opts ...ResourceOption) (*ManagedPublicEndpoints, error)public ManagedPublicEndpoints(string name, ManagedPublicEndpointsArgs? args = null, CustomResourceOptions? opts = null)
public ManagedPublicEndpoints(String name, ManagedPublicEndpointsArgs args)
public ManagedPublicEndpoints(String name, ManagedPublicEndpointsArgs args, CustomResourceOptions options)
type: dynatrace:ManagedPublicEndpoints
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_managedpublicendpoints" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagedPublicEndpointsArgs
- 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 ManagedPublicEndpointsArgs
- 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 ManagedPublicEndpointsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedPublicEndpointsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedPublicEndpointsArgs
- 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 managedPublicEndpointsResource = new Dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource", new()
{
AdditionalWebUiAddresses = new[]
{
"string",
},
BeaconForwarderAddress = "string",
CdnAddress = "string",
WebUiAddress = "string",
});
example, err := dynatrace.NewManagedPublicEndpoints(ctx, "managedPublicEndpointsResource", &dynatrace.ManagedPublicEndpointsArgs{
AdditionalWebUiAddresses: pulumi.StringArray{
pulumi.String("string"),
},
BeaconForwarderAddress: pulumi.String("string"),
CdnAddress: pulumi.String("string"),
WebUiAddress: pulumi.String("string"),
})
resource "dynatrace_managedpublicendpoints" "managedPublicEndpointsResource" {
additional_web_ui_addresses = ["string"]
beacon_forwarder_address = "string"
cdn_address = "string"
web_ui_address = "string"
}
var managedPublicEndpointsResource = new ManagedPublicEndpoints("managedPublicEndpointsResource", ManagedPublicEndpointsArgs.builder()
.additionalWebUiAddresses("string")
.beaconForwarderAddress("string")
.cdnAddress("string")
.webUiAddress("string")
.build());
managed_public_endpoints_resource = dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource",
additional_web_ui_addresses=["string"],
beacon_forwarder_address="string",
cdn_address="string",
web_ui_address="string")
const managedPublicEndpointsResource = new dynatrace.ManagedPublicEndpoints("managedPublicEndpointsResource", {
additionalWebUiAddresses: ["string"],
beaconForwarderAddress: "string",
cdnAddress: "string",
webUiAddress: "string",
});
type: dynatrace:ManagedPublicEndpoints
properties:
additionalWebUiAddresses:
- string
beaconForwarderAddress: string
cdnAddress: string
webUiAddress: string
ManagedPublicEndpoints 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 ManagedPublicEndpoints resource accepts the following input properties:
- Additional
Web List<string>Ui Addresses - Additional web UI addresses
- Beacon
Forwarder stringAddress - Beacon forwarder address
- Cdn
Address string - CDN address
- Web
Ui stringAddress - Web UI address
- Additional
Web []stringUi Addresses - Additional web UI addresses
- Beacon
Forwarder stringAddress - Beacon forwarder address
- Cdn
Address string - CDN address
- Web
Ui stringAddress - Web UI address
- additional_
web_ list(string)ui_ addresses - Additional web UI addresses
- beacon_
forwarder_ stringaddress - Beacon forwarder address
- cdn_
address string - CDN address
- web_
ui_ stringaddress - Web UI address
- additional
Web List<String>Ui Addresses - Additional web UI addresses
- beacon
Forwarder StringAddress - Beacon forwarder address
- cdn
Address String - CDN address
- web
Ui StringAddress - Web UI address
- additional
Web string[]Ui Addresses - Additional web UI addresses
- beacon
Forwarder stringAddress - Beacon forwarder address
- cdn
Address string - CDN address
- web
Ui stringAddress - Web UI address
- additional_
web_ Sequence[str]ui_ addresses - Additional web UI addresses
- beacon_
forwarder_ straddress - Beacon forwarder address
- cdn_
address str - CDN address
- web_
ui_ straddress - Web UI address
- additional
Web List<String>Ui Addresses - Additional web UI addresses
- beacon
Forwarder StringAddress - Beacon forwarder address
- cdn
Address String - CDN address
- web
Ui StringAddress - Web UI address
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedPublicEndpoints 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 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 ManagedPublicEndpoints Resource
Get an existing ManagedPublicEndpoints 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?: ManagedPublicEndpointsState, opts?: CustomResourceOptions): ManagedPublicEndpoints@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_web_ui_addresses: Optional[Sequence[str]] = None,
beacon_forwarder_address: Optional[str] = None,
cdn_address: Optional[str] = None,
web_ui_address: Optional[str] = None) -> ManagedPublicEndpointsfunc GetManagedPublicEndpoints(ctx *Context, name string, id IDInput, state *ManagedPublicEndpointsState, opts ...ResourceOption) (*ManagedPublicEndpoints, error)public static ManagedPublicEndpoints Get(string name, Input<string> id, ManagedPublicEndpointsState? state, CustomResourceOptions? opts = null)public static ManagedPublicEndpoints get(String name, Output<String> id, ManagedPublicEndpointsState state, CustomResourceOptions options)resources: _: type: dynatrace:ManagedPublicEndpoints get: id: ${id}import {
to = dynatrace_managedpublicendpoints.example
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.
- Additional
Web List<string>Ui Addresses - Additional web UI addresses
- Beacon
Forwarder stringAddress - Beacon forwarder address
- Cdn
Address string - CDN address
- Web
Ui stringAddress - Web UI address
- Additional
Web []stringUi Addresses - Additional web UI addresses
- Beacon
Forwarder stringAddress - Beacon forwarder address
- Cdn
Address string - CDN address
- Web
Ui stringAddress - Web UI address
- additional_
web_ list(string)ui_ addresses - Additional web UI addresses
- beacon_
forwarder_ stringaddress - Beacon forwarder address
- cdn_
address string - CDN address
- web_
ui_ stringaddress - Web UI address
- additional
Web List<String>Ui Addresses - Additional web UI addresses
- beacon
Forwarder StringAddress - Beacon forwarder address
- cdn
Address String - CDN address
- web
Ui StringAddress - Web UI address
- additional
Web string[]Ui Addresses - Additional web UI addresses
- beacon
Forwarder stringAddress - Beacon forwarder address
- cdn
Address string - CDN address
- web
Ui stringAddress - Web UI address
- additional_
web_ Sequence[str]ui_ addresses - Additional web UI addresses
- beacon_
forwarder_ straddress - Beacon forwarder address
- cdn_
address str - CDN address
- web_
ui_ straddress - Web UI address
- additional
Web List<String>Ui Addresses - Additional web UI addresses
- beacon
Forwarder StringAddress - Beacon forwarder address
- cdn
Address String - CDN address
- web
Ui StringAddress - Web UI address
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Tuesday, Jun 9, 2026 by Pulumiverse