azure-native.aadiam.PrivateLinkForAzureAd
Explore with Pulumi AI
PrivateLink Policy configuration object. API Version: 2020-03-01.
Example Usage
privateLinkPolicyCreate
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateLinkForAzureAd = new AzureNative.AadIam.PrivateLinkForAzureAd("privateLinkForAzureAd", new()
{
AllTenants = false,
Name = "myOrgPrivateLinkPolicy",
OwnerTenantId = "950f8bca-bf4d-4a41-ad10-034e792a243d",
PolicyName = "ddb1",
ResourceGroup = "myOrgVnetRG",
ResourceGroupName = "rg1",
ResourceName = "myOrgVnetPrivateLink",
SubscriptionId = "57849194-ea1f-470b-abda-d195b25634c1",
Tenants = new[]
{
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
},
});
});
package main
import (
aadiam "github.com/pulumi/pulumi-azure-native/sdk/go/azure/aadiam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aadiam.NewprivateLinkForAzureAd(ctx, "privateLinkForAzureAd", &aadiam.privateLinkForAzureAdArgs{
AllTenants: pulumi.Bool(false),
Name: pulumi.String("myOrgPrivateLinkPolicy"),
OwnerTenantId: pulumi.String("950f8bca-bf4d-4a41-ad10-034e792a243d"),
PolicyName: pulumi.String("ddb1"),
ResourceGroup: pulumi.String("myOrgVnetRG"),
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("myOrgVnetPrivateLink"),
SubscriptionId: pulumi.String("57849194-ea1f-470b-abda-d195b25634c1"),
Tenants: pulumi.StringArray{
pulumi.String("3616657d-1c80-41ae-9d83-2a2776f2c9be"),
pulumi.String("727b6ef1-18ab-4627-ac95-3f9cd945ed87"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.aadiam.privateLinkForAzureAd;
import com.pulumi.azurenative.aadiam.PrivateLinkForAzureAdArgs;
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 privateLinkForAzureAd = new PrivateLinkForAzureAd("privateLinkForAzureAd", PrivateLinkForAzureAdArgs.builder()
.allTenants(false)
.name("myOrgPrivateLinkPolicy")
.ownerTenantId("950f8bca-bf4d-4a41-ad10-034e792a243d")
.policyName("ddb1")
.resourceGroup("myOrgVnetRG")
.resourceGroupName("rg1")
.resourceName("myOrgVnetPrivateLink")
.subscriptionId("57849194-ea1f-470b-abda-d195b25634c1")
.tenants(
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
private_link_for_azure_ad = azure_native.aadiam.PrivateLinkForAzureAd("privateLinkForAzureAd",
all_tenants=False,
name="myOrgPrivateLinkPolicy",
owner_tenant_id="950f8bca-bf4d-4a41-ad10-034e792a243d",
policy_name="ddb1",
resource_group="myOrgVnetRG",
resource_group_name="rg1",
resource_name_="myOrgVnetPrivateLink",
subscription_id="57849194-ea1f-470b-abda-d195b25634c1",
tenants=[
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const privateLinkForAzureAd = new azure_native.aadiam.PrivateLinkForAzureAd("privateLinkForAzureAd", {
allTenants: false,
name: "myOrgPrivateLinkPolicy",
ownerTenantId: "950f8bca-bf4d-4a41-ad10-034e792a243d",
policyName: "ddb1",
resourceGroup: "myOrgVnetRG",
resourceGroupName: "rg1",
resourceName: "myOrgVnetPrivateLink",
subscriptionId: "57849194-ea1f-470b-abda-d195b25634c1",
tenants: [
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
],
});
resources:
privateLinkForAzureAd:
type: azure-native:aadiam:privateLinkForAzureAd
properties:
allTenants: false
name: myOrgPrivateLinkPolicy
ownerTenantId: 950f8bca-bf4d-4a41-ad10-034e792a243d
policyName: ddb1
resourceGroup: myOrgVnetRG
resourceGroupName: rg1
resourceName: myOrgVnetPrivateLink
subscriptionId: 57849194-ea1f-470b-abda-d195b25634c1
tenants:
- 3616657d-1c80-41ae-9d83-2a2776f2c9be
- 727b6ef1-18ab-4627-ac95-3f9cd945ed87
privateLinkPolicyMinCreate
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var privateLinkForAzureAd = new AzureNative.AadIam.PrivateLinkForAzureAd("privateLinkForAzureAd", new()
{
AllTenants = false,
Name = "myOrgPrivateLinkPolicy",
OwnerTenantId = "950f8bca-bf4d-4a41-ad10-034e792a243d",
PolicyName = "ddb1",
ResourceGroup = "myOrgVnetRG",
ResourceGroupName = "rg1",
ResourceName = "myOrgVnetPrivateLink",
SubscriptionId = "57849194-ea1f-470b-abda-d195b25634c1",
Tenants = new[]
{
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
},
});
});
package main
import (
aadiam "github.com/pulumi/pulumi-azure-native/sdk/go/azure/aadiam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aadiam.NewprivateLinkForAzureAd(ctx, "privateLinkForAzureAd", &aadiam.privateLinkForAzureAdArgs{
AllTenants: pulumi.Bool(false),
Name: pulumi.String("myOrgPrivateLinkPolicy"),
OwnerTenantId: pulumi.String("950f8bca-bf4d-4a41-ad10-034e792a243d"),
PolicyName: pulumi.String("ddb1"),
ResourceGroup: pulumi.String("myOrgVnetRG"),
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("myOrgVnetPrivateLink"),
SubscriptionId: pulumi.String("57849194-ea1f-470b-abda-d195b25634c1"),
Tenants: pulumi.StringArray{
pulumi.String("3616657d-1c80-41ae-9d83-2a2776f2c9be"),
pulumi.String("727b6ef1-18ab-4627-ac95-3f9cd945ed87"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.aadiam.privateLinkForAzureAd;
import com.pulumi.azurenative.aadiam.PrivateLinkForAzureAdArgs;
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 privateLinkForAzureAd = new PrivateLinkForAzureAd("privateLinkForAzureAd", PrivateLinkForAzureAdArgs.builder()
.allTenants(false)
.name("myOrgPrivateLinkPolicy")
.ownerTenantId("950f8bca-bf4d-4a41-ad10-034e792a243d")
.policyName("ddb1")
.resourceGroup("myOrgVnetRG")
.resourceGroupName("rg1")
.resourceName("myOrgVnetPrivateLink")
.subscriptionId("57849194-ea1f-470b-abda-d195b25634c1")
.tenants(
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
private_link_for_azure_ad = azure_native.aadiam.PrivateLinkForAzureAd("privateLinkForAzureAd",
all_tenants=False,
name="myOrgPrivateLinkPolicy",
owner_tenant_id="950f8bca-bf4d-4a41-ad10-034e792a243d",
policy_name="ddb1",
resource_group="myOrgVnetRG",
resource_group_name="rg1",
resource_name_="myOrgVnetPrivateLink",
subscription_id="57849194-ea1f-470b-abda-d195b25634c1",
tenants=[
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
])
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const privateLinkForAzureAd = new azure_native.aadiam.PrivateLinkForAzureAd("privateLinkForAzureAd", {
allTenants: false,
name: "myOrgPrivateLinkPolicy",
ownerTenantId: "950f8bca-bf4d-4a41-ad10-034e792a243d",
policyName: "ddb1",
resourceGroup: "myOrgVnetRG",
resourceGroupName: "rg1",
resourceName: "myOrgVnetPrivateLink",
subscriptionId: "57849194-ea1f-470b-abda-d195b25634c1",
tenants: [
"3616657d-1c80-41ae-9d83-2a2776f2c9be",
"727b6ef1-18ab-4627-ac95-3f9cd945ed87",
],
});
resources:
privateLinkForAzureAd:
type: azure-native:aadiam:privateLinkForAzureAd
properties:
allTenants: false
name: myOrgPrivateLinkPolicy
ownerTenantId: 950f8bca-bf4d-4a41-ad10-034e792a243d
policyName: ddb1
resourceGroup: myOrgVnetRG
resourceGroupName: rg1
resourceName: myOrgVnetPrivateLink
subscriptionId: 57849194-ea1f-470b-abda-d195b25634c1
tenants:
- 3616657d-1c80-41ae-9d83-2a2776f2c9be
- 727b6ef1-18ab-4627-ac95-3f9cd945ed87
Create PrivateLinkForAzureAd Resource
new PrivateLinkForAzureAd(name: string, args: PrivateLinkForAzureAdArgs, opts?: CustomResourceOptions);
@overload
def PrivateLinkForAzureAd(resource_name: str,
opts: Optional[ResourceOptions] = None,
all_tenants: Optional[bool] = None,
name: Optional[str] = None,
owner_tenant_id: Optional[str] = None,
policy_name: Optional[str] = None,
resource_group: Optional[str] = None,
resource_group_name: Optional[str] = None,
resource_name_: Optional[str] = None,
subscription_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tenants: Optional[Sequence[str]] = None)
@overload
def PrivateLinkForAzureAd(resource_name: str,
args: PrivateLinkForAzureAdArgs,
opts: Optional[ResourceOptions] = None)
func NewPrivateLinkForAzureAd(ctx *Context, name string, args PrivateLinkForAzureAdArgs, opts ...ResourceOption) (*PrivateLinkForAzureAd, error)
public PrivateLinkForAzureAd(string name, PrivateLinkForAzureAdArgs args, CustomResourceOptions? opts = null)
public PrivateLinkForAzureAd(String name, PrivateLinkForAzureAdArgs args)
public PrivateLinkForAzureAd(String name, PrivateLinkForAzureAdArgs args, CustomResourceOptions options)
type: azure-native:aadiam:privateLinkForAzureAd
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateLinkForAzureAdArgs
- 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 PrivateLinkForAzureAdArgs
- 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 PrivateLinkForAzureAdArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateLinkForAzureAdArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateLinkForAzureAdArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
PrivateLinkForAzureAd Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The PrivateLinkForAzureAd resource accepts the following input properties:
- Resource
Group stringName Name of an Azure resource group.
- All
Tenants bool Flag indicating whether all tenants are allowed
- Name string
Name of this resource.
- Owner
Tenant stringId Guid of the owner tenant
- Policy
Name string The name of the private link policy in Azure AD.
- Resource
Group string Name of the resource group
- Resource
Name string Name of the private link policy resource
- Subscription
Id string Subscription Identifier
- Dictionary<string, string>
Resource tags.
- Tenants List<string>
The list of tenantIds.
- Resource
Group stringName Name of an Azure resource group.
- All
Tenants bool Flag indicating whether all tenants are allowed
- Name string
Name of this resource.
- Owner
Tenant stringId Guid of the owner tenant
- Policy
Name string The name of the private link policy in Azure AD.
- Resource
Group string Name of the resource group
- Resource
Name string Name of the private link policy resource
- Subscription
Id string Subscription Identifier
- map[string]string
Resource tags.
- Tenants []string
The list of tenantIds.
- resource
Group StringName Name of an Azure resource group.
- all
Tenants Boolean Flag indicating whether all tenants are allowed
- name String
Name of this resource.
- owner
Tenant StringId Guid of the owner tenant
- policy
Name String The name of the private link policy in Azure AD.
- resource
Group String Name of the resource group
- resource
Name String Name of the private link policy resource
- subscription
Id String Subscription Identifier
- Map<String,String>
Resource tags.
- tenants List<String>
The list of tenantIds.
- resource
Group stringName Name of an Azure resource group.
- all
Tenants boolean Flag indicating whether all tenants are allowed
- name string
Name of this resource.
- owner
Tenant stringId Guid of the owner tenant
- policy
Name string The name of the private link policy in Azure AD.
- resource
Group string Name of the resource group
- resource
Name string Name of the private link policy resource
- subscription
Id string Subscription Identifier
- {[key: string]: string}
Resource tags.
- tenants string[]
The list of tenantIds.
- resource_
group_ strname Name of an Azure resource group.
- all_
tenants bool Flag indicating whether all tenants are allowed
- name str
Name of this resource.
- owner_
tenant_ strid Guid of the owner tenant
- policy_
name str The name of the private link policy in Azure AD.
- resource_
group str Name of the resource group
- resource_
name str Name of the private link policy resource
- subscription_
id str Subscription Identifier
- Mapping[str, str]
Resource tags.
- tenants Sequence[str]
The list of tenantIds.
- resource
Group StringName Name of an Azure resource group.
- all
Tenants Boolean Flag indicating whether all tenants are allowed
- name String
Name of this resource.
- owner
Tenant StringId Guid of the owner tenant
- policy
Name String The name of the private link policy in Azure AD.
- resource
Group String Name of the resource group
- resource
Name String Name of the private link policy resource
- subscription
Id String Subscription Identifier
- Map<String>
Resource tags.
- tenants List<String>
The list of tenantIds.
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateLinkForAzureAd resource produces the following output properties:
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:aadiam:privateLinkForAzureAd myOrgPrivateLinkPolicy /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/microsoft.aadiam/privateLinkForAzureAd/{policyName}
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0