We recommend using Azure Native.
published on Monday, Feb 23, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Feb 23, 2026 by Pulumi
Manages an API Connection.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const example = azure.connections.getManagedApiOutput({
name: "servicebus",
location: exampleResourceGroup.location,
});
const exampleNamespace = new azure.servicebus.Namespace("example", {
name: "example-namespace",
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "Basic",
});
const exampleApiConnection = new azure.connections.ApiConnection("example", {
name: "example-connection",
resourceGroupName: exampleResourceGroup.name,
managedApiId: example.apply(example => example.id),
displayName: "Example 1",
parameterValues: {
connectionString: exampleNamespace.defaultPrimaryConnectionString,
},
tags: {
Hello: "World",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example = azure.connections.get_managed_api_output(name="servicebus",
location=example_resource_group.location)
example_namespace = azure.servicebus.Namespace("example",
name="example-namespace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="Basic")
example_api_connection = azure.connections.ApiConnection("example",
name="example-connection",
resource_group_name=example_resource_group.name,
managed_api_id=example.id,
display_name="Example 1",
parameter_values={
"connectionString": example_namespace.default_primary_connection_string,
},
tags={
"Hello": "World",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/connections"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/servicebus"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
example := connections.GetManagedApiOutput(ctx, connections.GetManagedApiOutputArgs{
Name: pulumi.String("servicebus"),
Location: exampleResourceGroup.Location,
}, nil)
exampleNamespace, err := servicebus.NewNamespace(ctx, "example", &servicebus.NamespaceArgs{
Name: pulumi.String("example-namespace"),
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("Basic"),
})
if err != nil {
return err
}
_, err = connections.NewApiConnection(ctx, "example", &connections.ApiConnectionArgs{
Name: pulumi.String("example-connection"),
ResourceGroupName: exampleResourceGroup.Name,
ManagedApiId: pulumi.String(example.ApplyT(func(example connections.GetManagedApiResult) (*string, error) {
return &example.Id, nil
}).(pulumi.StringPtrOutput)),
DisplayName: pulumi.String("Example 1"),
ParameterValues: pulumi.StringMap{
"connectionString": exampleNamespace.DefaultPrimaryConnectionString,
},
Tags: pulumi.StringMap{
"Hello": pulumi.String("World"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var example = Azure.Connections.GetManagedApi.Invoke(new()
{
Name = "servicebus",
Location = exampleResourceGroup.Location,
});
var exampleNamespace = new Azure.ServiceBus.Namespace("example", new()
{
Name = "example-namespace",
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "Basic",
});
var exampleApiConnection = new Azure.Connections.ApiConnection("example", new()
{
Name = "example-connection",
ResourceGroupName = exampleResourceGroup.Name,
ManagedApiId = example.Apply(getManagedApiResult => getManagedApiResult.Id),
DisplayName = "Example 1",
ParameterValues =
{
{ "connectionString", exampleNamespace.DefaultPrimaryConnectionString },
},
Tags =
{
{ "Hello", "World" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.connections.ConnectionsFunctions;
import com.pulumi.azure.connections.inputs.GetManagedApiArgs;
import com.pulumi.azure.servicebus.Namespace;
import com.pulumi.azure.servicebus.NamespaceArgs;
import com.pulumi.azure.connections.ApiConnection;
import com.pulumi.azure.connections.ApiConnectionArgs;
import java.util.List;
import java.util.ArrayList;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
final var example = ConnectionsFunctions.getManagedApi(GetManagedApiArgs.builder()
.name("servicebus")
.location(exampleResourceGroup.location())
.build());
var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
.name("example-namespace")
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.sku("Basic")
.build());
var exampleApiConnection = new ApiConnection("exampleApiConnection", ApiConnectionArgs.builder()
.name("example-connection")
.resourceGroupName(exampleResourceGroup.name())
.managedApiId(example.applyValue(_example -> _example.id()))
.displayName("Example 1")
.parameterValues(Map.of("connectionString", exampleNamespace.defaultPrimaryConnectionString()))
.tags(Map.of("Hello", "World"))
.build());
}
}
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
name: example
properties:
name: example-resources
location: West Europe
exampleNamespace:
type: azure:servicebus:Namespace
name: example
properties:
name: example-namespace
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
sku: Basic
exampleApiConnection:
type: azure:connections:ApiConnection
name: example
properties:
name: example-connection
resourceGroupName: ${exampleResourceGroup.name}
managedApiId: ${example.id}
displayName: Example 1
parameterValues:
connectionString: ${exampleNamespace.defaultPrimaryConnectionString}
tags:
Hello: World
variables:
example:
fn::invoke:
function: azure:connections:getManagedApi
arguments:
name: servicebus
location: ${exampleResourceGroup.location}
API Providers
This resource uses the following Azure API Providers:
Microsoft.Web- 2016-06-01
Create ApiConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApiConnection(name: string, args: ApiConnectionArgs, opts?: CustomResourceOptions);@overload
def ApiConnection(resource_name: str,
args: ApiConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ApiConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_api_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
display_name: Optional[str] = None,
name: Optional[str] = None,
parameter_values: Optional[Mapping[str, str]] = None,
tags: Optional[Mapping[str, str]] = None)func NewApiConnection(ctx *Context, name string, args ApiConnectionArgs, opts ...ResourceOption) (*ApiConnection, error)public ApiConnection(string name, ApiConnectionArgs args, CustomResourceOptions? opts = null)
public ApiConnection(String name, ApiConnectionArgs args)
public ApiConnection(String name, ApiConnectionArgs args, CustomResourceOptions options)
type: azure:connections:ApiConnection
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 ApiConnectionArgs
- 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 ApiConnectionArgs
- 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 ApiConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApiConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApiConnectionArgs
- 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 apiConnectionResource = new Azure.Connections.ApiConnection("apiConnectionResource", new()
{
ManagedApiId = "string",
ResourceGroupName = "string",
DisplayName = "string",
Name = "string",
ParameterValues =
{
{ "string", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := connections.NewApiConnection(ctx, "apiConnectionResource", &connections.ApiConnectionArgs{
ManagedApiId: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Name: pulumi.String("string"),
ParameterValues: pulumi.StringMap{
"string": pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var apiConnectionResource = new ApiConnection("apiConnectionResource", ApiConnectionArgs.builder()
.managedApiId("string")
.resourceGroupName("string")
.displayName("string")
.name("string")
.parameterValues(Map.of("string", "string"))
.tags(Map.of("string", "string"))
.build());
api_connection_resource = azure.connections.ApiConnection("apiConnectionResource",
managed_api_id="string",
resource_group_name="string",
display_name="string",
name="string",
parameter_values={
"string": "string",
},
tags={
"string": "string",
})
const apiConnectionResource = new azure.connections.ApiConnection("apiConnectionResource", {
managedApiId: "string",
resourceGroupName: "string",
displayName: "string",
name: "string",
parameterValues: {
string: "string",
},
tags: {
string: "string",
},
});
type: azure:connections:ApiConnection
properties:
displayName: string
managedApiId: string
name: string
parameterValues:
string: string
resourceGroupName: string
tags:
string: string
ApiConnection 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 ApiConnection resource accepts the following input properties:
- Managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- Resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Display
Name string - A display name for this API Connection.
- Name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- Parameter
Values Dictionary<string, string> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Dictionary<string, string>
- A mapping of tags which should be assigned to the API Connection.
- Managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- Resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Display
Name string - A display name for this API Connection.
- Name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- Parameter
Values map[string]string A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- map[string]string
- A mapping of tags which should be assigned to the API Connection.
- managed
Api StringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- resource
Group StringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- display
Name String - A display name for this API Connection.
- name String
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values Map<String,String> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Map<String,String>
- A mapping of tags which should be assigned to the API Connection.
- managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- display
Name string - A display name for this API Connection.
- name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values {[key: string]: string} A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- {[key: string]: string}
- A mapping of tags which should be assigned to the API Connection.
- managed_
api_ strid - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- resource_
group_ strname - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- display_
name str - A display name for this API Connection.
- name str
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter_
values Mapping[str, str] A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Mapping[str, str]
- A mapping of tags which should be assigned to the API Connection.
- managed
Api StringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- resource
Group StringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- display
Name String - A display name for this API Connection.
- name String
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values Map<String> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Map<String>
- A mapping of tags which should be assigned to the API Connection.
Outputs
All input properties are implicitly available as output properties. Additionally, the ApiConnection 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 ApiConnection Resource
Get an existing ApiConnection 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?: ApiConnectionState, opts?: CustomResourceOptions): ApiConnection@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
managed_api_id: Optional[str] = None,
name: Optional[str] = None,
parameter_values: Optional[Mapping[str, str]] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> ApiConnectionfunc GetApiConnection(ctx *Context, name string, id IDInput, state *ApiConnectionState, opts ...ResourceOption) (*ApiConnection, error)public static ApiConnection Get(string name, Input<string> id, ApiConnectionState? state, CustomResourceOptions? opts = null)public static ApiConnection get(String name, Output<String> id, ApiConnectionState state, CustomResourceOptions options)resources: _: type: azure:connections:ApiConnection 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.
- Display
Name string - A display name for this API Connection.
- Managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- Name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- Parameter
Values Dictionary<string, string> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the API Connection.
- Display
Name string - A display name for this API Connection.
- Managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- Name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- Parameter
Values map[string]string A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- Resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- map[string]string
- A mapping of tags which should be assigned to the API Connection.
- display
Name String - A display name for this API Connection.
- managed
Api StringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- name String
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values Map<String,String> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- resource
Group StringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the API Connection.
- display
Name string - A display name for this API Connection.
- managed
Api stringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- name string
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values {[key: string]: string} A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- resource
Group stringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the API Connection.
- display_
name str - A display name for this API Connection.
- managed_
api_ strid - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- name str
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter_
values Mapping[str, str] A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- resource_
group_ strname - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the API Connection.
- display
Name String - A display name for this API Connection.
- managed
Api StringId - The ID of the Managed API which this API Connection is linked to. Changing this forces a new API Connection to be created.
- name String
- The Name which should be used for this API Connection. Changing this forces a new API Connection to be created.
- parameter
Values Map<String> A map of parameter values associated with this API Connection.
Note: The Azure API doesn't return sensitive parameters in the API response which can lead to a diff, as such you may need to use Terraform's
ignore_changesfunctionality on this field as shown in the Example Usage above.- resource
Group StringName - The name of the Resource Group where this API Connection should exist. Changing this forces a new API Connection to be created.
- Map<String>
- A mapping of tags which should be assigned to the API Connection.
Import
API Connections can be imported using the resource id, e.g.
$ pulumi import azure:connections/apiConnection:ApiConnection example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.Web/connections/example-connection
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Feb 23, 2026 by Pulumi
