@pulumi/azure 5.63.0-alpha.1706544707 → 5.63.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/appservice/environmentV3.d.ts +60 -0
- package/appservice/environmentV3.js +60 -0
- package/appservice/environmentV3.js.map +1 -1
- package/arckubernetes/cluster.d.ts +27 -0
- package/arckubernetes/cluster.js +27 -0
- package/arckubernetes/cluster.js.map +1 -1
- package/cdn/endpoint.d.ts +4 -0
- package/cdn/endpoint.js +4 -0
- package/cdn/endpoint.js.map +1 -1
- package/cdn/frontdoorOrigin.d.ts +158 -0
- package/cdn/frontdoorOrigin.js +158 -0
- package/cdn/frontdoorOrigin.js.map +1 -1
- package/cdn/profile.d.ts +4 -0
- package/cdn/profile.js +4 -0
- package/cdn/profile.js.map +1 -1
- package/compute/image.d.ts +21 -0
- package/compute/image.js +21 -0
- package/compute/image.js.map +1 -1
- package/compute/windowsVirtualMachine.d.ts +15 -0
- package/compute/windowsVirtualMachine.js.map +1 -1
- package/databricks/workspaceCustomerManagedKey.d.ts +92 -0
- package/databricks/workspaceCustomerManagedKey.js +92 -0
- package/databricks/workspaceCustomerManagedKey.js.map +1 -1
- package/databricks/workspaceRootDbfsCustomerManagedKey.d.ts +90 -0
- package/databricks/workspaceRootDbfsCustomerManagedKey.js +90 -0
- package/databricks/workspaceRootDbfsCustomerManagedKey.js.map +1 -1
- package/frontdoor/customHttpsConfiguration.d.ts +79 -0
- package/frontdoor/customHttpsConfiguration.js +79 -0
- package/frontdoor/customHttpsConfiguration.js.map +1 -1
- package/frontdoor/firewallPolicy.d.ts +6 -0
- package/frontdoor/firewallPolicy.js +6 -0
- package/frontdoor/firewallPolicy.js.map +1 -1
- package/mssql/databaseExtendedAuditingPolicy.d.ts +18 -0
- package/mssql/databaseExtendedAuditingPolicy.js.map +1 -1
- package/mssql/managedInstanceFailoverGroup.d.ts +86 -0
- package/mssql/managedInstanceFailoverGroup.js +86 -0
- package/mssql/managedInstanceFailoverGroup.js.map +1 -1
- package/network/networkWatcherFlowLog.d.ts +4 -0
- package/network/networkWatcherFlowLog.js +4 -0
- package/network/networkWatcherFlowLog.js.map +1 -1
- package/package.json +1 -1
- package/privatelink/endpoint.d.ts +151 -0
- package/privatelink/endpoint.js +151 -0
- package/privatelink/endpoint.js.map +1 -1
- package/sql/managedInstanceFailoverGroup.d.ts +63 -0
- package/sql/managedInstanceFailoverGroup.js +63 -0
- package/sql/managedInstanceFailoverGroup.js.map +1 -1
- package/types/input.d.ts +38 -0
- package/types/output.d.ts +38 -0
|
@@ -2,6 +2,66 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Manages a 3rd Generation (v3) App Service Environment.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* This example provisions an App Service Environment V3. Additional examples of how to use the `azure.appservice.EnvironmentV3` resource can be found in the `./examples/app-service-environment-v3` directory within the GitHub Repository.
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azure from "@pulumi/azure";
|
|
14
|
+
*
|
|
15
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
16
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
17
|
+
* location: exampleResourceGroup.location,
|
|
18
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
19
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
20
|
+
* });
|
|
21
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
22
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
23
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
24
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
25
|
+
* delegations: [{
|
|
26
|
+
* name: "Microsoft.Web.hostingEnvironments",
|
|
27
|
+
* serviceDelegation: {
|
|
28
|
+
* name: "Microsoft.Web/hostingEnvironments",
|
|
29
|
+
* actions: ["Microsoft.Network/virtualNetworks/subnets/action"],
|
|
30
|
+
* },
|
|
31
|
+
* }],
|
|
32
|
+
* });
|
|
33
|
+
* const exampleEnvironmentV3 = new azure.appservice.EnvironmentV3("exampleEnvironmentV3", {
|
|
34
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
35
|
+
* subnetId: exampleSubnet.id,
|
|
36
|
+
* internalLoadBalancingMode: "Web, Publishing",
|
|
37
|
+
* clusterSettings: [
|
|
38
|
+
* {
|
|
39
|
+
* name: "DisableTls1.0",
|
|
40
|
+
* value: "1",
|
|
41
|
+
* },
|
|
42
|
+
* {
|
|
43
|
+
* name: "InternalEncryption",
|
|
44
|
+
* value: "true",
|
|
45
|
+
* },
|
|
46
|
+
* {
|
|
47
|
+
* name: "FrontEndSSLCipherSuiteOrder",
|
|
48
|
+
* value: "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* tags: {
|
|
52
|
+
* env: "production",
|
|
53
|
+
* terraformed: "true",
|
|
54
|
+
* },
|
|
55
|
+
* });
|
|
56
|
+
* const exampleServicePlan = new azure.appservice.ServicePlan("exampleServicePlan", {
|
|
57
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
58
|
+
* location: exampleResourceGroup.location,
|
|
59
|
+
* osType: "Linux",
|
|
60
|
+
* skuName: "I1v2",
|
|
61
|
+
* appServiceEnvironmentId: exampleEnvironmentV3.id,
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
5
65
|
* ## Import
|
|
6
66
|
*
|
|
7
67
|
* A 3rd Generation (v3) App Service Environment can be imported using the `resource id`, e.g.
|
|
@@ -6,6 +6,66 @@ exports.EnvironmentV3 = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Manages a 3rd Generation (v3) App Service Environment.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* This example provisions an App Service Environment V3. Additional examples of how to use the `azure.appservice.EnvironmentV3` resource can be found in the `./examples/app-service-environment-v3` directory within the GitHub Repository.
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azure from "@pulumi/azure";
|
|
18
|
+
*
|
|
19
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
20
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
21
|
+
* location: exampleResourceGroup.location,
|
|
22
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
23
|
+
* addressSpaces: ["10.0.0.0/16"],
|
|
24
|
+
* });
|
|
25
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
26
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
27
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
28
|
+
* addressPrefixes: ["10.0.2.0/24"],
|
|
29
|
+
* delegations: [{
|
|
30
|
+
* name: "Microsoft.Web.hostingEnvironments",
|
|
31
|
+
* serviceDelegation: {
|
|
32
|
+
* name: "Microsoft.Web/hostingEnvironments",
|
|
33
|
+
* actions: ["Microsoft.Network/virtualNetworks/subnets/action"],
|
|
34
|
+
* },
|
|
35
|
+
* }],
|
|
36
|
+
* });
|
|
37
|
+
* const exampleEnvironmentV3 = new azure.appservice.EnvironmentV3("exampleEnvironmentV3", {
|
|
38
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
39
|
+
* subnetId: exampleSubnet.id,
|
|
40
|
+
* internalLoadBalancingMode: "Web, Publishing",
|
|
41
|
+
* clusterSettings: [
|
|
42
|
+
* {
|
|
43
|
+
* name: "DisableTls1.0",
|
|
44
|
+
* value: "1",
|
|
45
|
+
* },
|
|
46
|
+
* {
|
|
47
|
+
* name: "InternalEncryption",
|
|
48
|
+
* value: "true",
|
|
49
|
+
* },
|
|
50
|
+
* {
|
|
51
|
+
* name: "FrontEndSSLCipherSuiteOrder",
|
|
52
|
+
* value: "TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* tags: {
|
|
56
|
+
* env: "production",
|
|
57
|
+
* terraformed: "true",
|
|
58
|
+
* },
|
|
59
|
+
* });
|
|
60
|
+
* const exampleServicePlan = new azure.appservice.ServicePlan("exampleServicePlan", {
|
|
61
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
62
|
+
* location: exampleResourceGroup.location,
|
|
63
|
+
* osType: "Linux",
|
|
64
|
+
* skuName: "I1v2",
|
|
65
|
+
* appServiceEnvironmentId: exampleEnvironmentV3.id,
|
|
66
|
+
* });
|
|
67
|
+
* ```
|
|
68
|
+
*
|
|
9
69
|
* ## Import
|
|
10
70
|
*
|
|
11
71
|
* A 3rd Generation (v3) App Service Environment can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environmentV3.js","sourceRoot":"","sources":["../../appservice/environmentV3.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"environmentV3.js","sourceRoot":"","sources":["../../appservice/environmentV3.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,33 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Manages an Arc Kubernetes Cluster.
|
|
6
|
+
*
|
|
7
|
+
* > **Note:** Installing and configuring the Azure Arc Agent on your Kubernetes Cluster to establish connectivity is outside the scope of this document. For more details refer to [Deploy agents to your cluster](https://learn.microsoft.com/en-us/azure/azure-arc/kubernetes/conceptual-agent-overview#deploy-agents-to-your-cluster) and [Connect an existing Kubernetes Cluster](https://learn.microsoft.com/en-us/azure/azure-arc/kubernetes/quickstart-connect-cluster?tabs=azure-cli#connect-an-existing-kubernetes-cluster). If you encounter issues connecting your Kubernetes Cluster to Azure Arc, we'd recommend opening a ticket with Microsoft Support.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azure from "@pulumi/azure";
|
|
14
|
+
* import * as fs from "fs";
|
|
15
|
+
*
|
|
16
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
17
|
+
* const exampleCluster = new azure.arckubernetes.Cluster("exampleCluster", {
|
|
18
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
19
|
+
* location: "West Europe",
|
|
20
|
+
* agentPublicKeyCertificate: Buffer.from(fs.readFileSync("testdata/public.cer", 'binary')).toString('base64'),
|
|
21
|
+
* identity: {
|
|
22
|
+
* type: "SystemAssigned",
|
|
23
|
+
* },
|
|
24
|
+
* tags: {
|
|
25
|
+
* ENV: "Test",
|
|
26
|
+
* },
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* > **Note:** An extensive example on connecting the `azure.arckubernetes.Cluster` to an external kubernetes cluster can be found in the `./examples/arckubernetes` directory within the GitHub Repository.
|
|
31
|
+
*
|
|
5
32
|
* ## Import
|
|
6
33
|
*
|
|
7
34
|
* Arc Kubernetes Cluster can be imported using the `resource id`, e.g.
|
package/arckubernetes/cluster.js
CHANGED
|
@@ -6,6 +6,33 @@ exports.Cluster = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Manages an Arc Kubernetes Cluster.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** Installing and configuring the Azure Arc Agent on your Kubernetes Cluster to establish connectivity is outside the scope of this document. For more details refer to [Deploy agents to your cluster](https://learn.microsoft.com/en-us/azure/azure-arc/kubernetes/conceptual-agent-overview#deploy-agents-to-your-cluster) and [Connect an existing Kubernetes Cluster](https://learn.microsoft.com/en-us/azure/azure-arc/kubernetes/quickstart-connect-cluster?tabs=azure-cli#connect-an-existing-kubernetes-cluster). If you encounter issues connecting your Kubernetes Cluster to Azure Arc, we'd recommend opening a ticket with Microsoft Support.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azure from "@pulumi/azure";
|
|
18
|
+
* import * as fs from "fs";
|
|
19
|
+
*
|
|
20
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
21
|
+
* const exampleCluster = new azure.arckubernetes.Cluster("exampleCluster", {
|
|
22
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
23
|
+
* location: "West Europe",
|
|
24
|
+
* agentPublicKeyCertificate: Buffer.from(fs.readFileSync("testdata/public.cer", 'binary')).toString('base64'),
|
|
25
|
+
* identity: {
|
|
26
|
+
* type: "SystemAssigned",
|
|
27
|
+
* },
|
|
28
|
+
* tags: {
|
|
29
|
+
* ENV: "Test",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* > **Note:** An extensive example on connecting the `azure.arckubernetes.Cluster` to an external kubernetes cluster can be found in the `./examples/arckubernetes` directory within the GitHub Repository.
|
|
35
|
+
*
|
|
9
36
|
* ## Import
|
|
10
37
|
*
|
|
11
38
|
* Arc Kubernetes Cluster can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../arckubernetes/cluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../arckubernetes/cluster.ts"],"names":[],"mappings":"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"}
|
package/cdn/endpoint.d.ts
CHANGED
|
@@ -2,6 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* A CDN Endpoint is the entity within a CDN Profile containing configuration information regarding caching behaviours and origins. The CDN Endpoint is exposed using the URL format `<endpointname>.azureedge.net`.
|
|
6
|
+
*
|
|
7
|
+
* !> **Be Aware:** Azure is rolling out a breaking change on Friday 9th April 2021 which may cause issues with the CDN/FrontDoor resources. More information is available in this GitHub issue as the necessary changes are identified.
|
|
8
|
+
*
|
|
5
9
|
* ## Example Usage
|
|
6
10
|
*
|
|
7
11
|
* ```typescript
|
package/cdn/endpoint.js
CHANGED
|
@@ -6,6 +6,10 @@ exports.Endpoint = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* A CDN Endpoint is the entity within a CDN Profile containing configuration information regarding caching behaviours and origins. The CDN Endpoint is exposed using the URL format `<endpointname>.azureedge.net`.
|
|
10
|
+
*
|
|
11
|
+
* !> **Be Aware:** Azure is rolling out a breaking change on Friday 9th April 2021 which may cause issues with the CDN/FrontDoor resources. More information is available in this GitHub issue as the necessary changes are identified.
|
|
12
|
+
*
|
|
9
13
|
* ## Example Usage
|
|
10
14
|
*
|
|
11
15
|
* ```typescript
|
package/cdn/endpoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../cdn/endpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"endpoint.js","sourceRoot":"","sources":["../../cdn/endpoint.ts"],"names":[],"mappings":"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"}
|
package/cdn/frontdoorOrigin.d.ts
CHANGED
|
@@ -2,6 +2,164 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Manages a Front Door (standard/premium) Origin.
|
|
6
|
+
*
|
|
7
|
+
* !>**IMPORTANT:** If you are attempting to implement an Origin that uses its own Private Link Service with a Load Balancer the Profile resource in your configuration file **must** have a `dependsOn` meta-argument which references the `azure.privatedns.LinkService`, see `Example Usage With Private Link Service` below.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azure from "@pulumi/azure";
|
|
14
|
+
*
|
|
15
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
16
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
17
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
18
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
19
|
+
* });
|
|
20
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
21
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
22
|
+
* loadBalancing: {},
|
|
23
|
+
* });
|
|
24
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
25
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
26
|
+
* enabled: true,
|
|
27
|
+
* certificateNameCheckEnabled: false,
|
|
28
|
+
* hostName: "contoso.com",
|
|
29
|
+
* httpPort: 80,
|
|
30
|
+
* httpsPort: 443,
|
|
31
|
+
* originHostHeader: "www.contoso.com",
|
|
32
|
+
* priority: 1,
|
|
33
|
+
* weight: 1,
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
* ### With Private Link
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as azure from "@pulumi/azure";
|
|
41
|
+
*
|
|
42
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
43
|
+
* const exampleAccount = new azure.storage.Account("exampleAccount", {
|
|
44
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
45
|
+
* location: exampleResourceGroup.location,
|
|
46
|
+
* accountTier: "Premium",
|
|
47
|
+
* accountReplicationType: "LRS",
|
|
48
|
+
* allowNestedItemsToBePublic: false,
|
|
49
|
+
* networkRules: {
|
|
50
|
+
* defaultAction: "Deny",
|
|
51
|
+
* },
|
|
52
|
+
* tags: {
|
|
53
|
+
* environment: "Example",
|
|
54
|
+
* },
|
|
55
|
+
* });
|
|
56
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
57
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
58
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
59
|
+
* });
|
|
60
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
61
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
62
|
+
* loadBalancing: {},
|
|
63
|
+
* });
|
|
64
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
65
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
66
|
+
* enabled: true,
|
|
67
|
+
* certificateNameCheckEnabled: true,
|
|
68
|
+
* hostName: exampleAccount.primaryBlobHost,
|
|
69
|
+
* originHostHeader: exampleAccount.primaryBlobHost,
|
|
70
|
+
* priority: 1,
|
|
71
|
+
* weight: 500,
|
|
72
|
+
* privateLink: {
|
|
73
|
+
* requestMessage: "Request access for Private Link Origin CDN Frontdoor",
|
|
74
|
+
* targetType: "blob",
|
|
75
|
+
* location: exampleAccount.location,
|
|
76
|
+
* privateLinkTargetId: exampleAccount.id,
|
|
77
|
+
* },
|
|
78
|
+
* });
|
|
79
|
+
* ```
|
|
80
|
+
* ### With Private Link Service
|
|
81
|
+
*
|
|
82
|
+
* ```typescript
|
|
83
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
84
|
+
* import * as azure from "@pulumi/azure";
|
|
85
|
+
*
|
|
86
|
+
* const current = azure.core.getClientConfig({});
|
|
87
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
88
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
89
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
90
|
+
* location: exampleResourceGroup.location,
|
|
91
|
+
* addressSpaces: ["10.5.0.0/16"],
|
|
92
|
+
* });
|
|
93
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
94
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
95
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
96
|
+
* addressPrefixes: ["10.5.1.0/24"],
|
|
97
|
+
* privateLinkServiceNetworkPoliciesEnabled: false,
|
|
98
|
+
* });
|
|
99
|
+
* const examplePublicIp = new azure.network.PublicIp("examplePublicIp", {
|
|
100
|
+
* sku: "Standard",
|
|
101
|
+
* location: exampleResourceGroup.location,
|
|
102
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
103
|
+
* allocationMethod: "Static",
|
|
104
|
+
* });
|
|
105
|
+
* const exampleLoadBalancer = new azure.lb.LoadBalancer("exampleLoadBalancer", {
|
|
106
|
+
* sku: "Standard",
|
|
107
|
+
* location: exampleResourceGroup.location,
|
|
108
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
109
|
+
* frontendIpConfigurations: [{
|
|
110
|
+
* name: examplePublicIp.name,
|
|
111
|
+
* publicIpAddressId: examplePublicIp.id,
|
|
112
|
+
* }],
|
|
113
|
+
* });
|
|
114
|
+
* const exampleLinkService = new azure.privatedns.LinkService("exampleLinkService", {
|
|
115
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
116
|
+
* location: exampleResourceGroup.location,
|
|
117
|
+
* visibilitySubscriptionIds: [current.then(current => current.subscriptionId)],
|
|
118
|
+
* loadBalancerFrontendIpConfigurationIds: [exampleLoadBalancer.frontendIpConfigurations.apply(frontendIpConfigurations => frontendIpConfigurations?.[0]?.id)],
|
|
119
|
+
* natIpConfigurations: [{
|
|
120
|
+
* name: "primary",
|
|
121
|
+
* privateIpAddress: "10.5.1.17",
|
|
122
|
+
* privateIpAddressVersion: "IPv4",
|
|
123
|
+
* subnetId: exampleSubnet.id,
|
|
124
|
+
* primary: true,
|
|
125
|
+
* }],
|
|
126
|
+
* });
|
|
127
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
128
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
129
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
130
|
+
* }, {
|
|
131
|
+
* dependsOn: [exampleLinkService],
|
|
132
|
+
* });
|
|
133
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
134
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
135
|
+
* loadBalancing: {
|
|
136
|
+
* additionalLatencyInMilliseconds: 0,
|
|
137
|
+
* sampleSize: 16,
|
|
138
|
+
* successfulSamplesRequired: 3,
|
|
139
|
+
* },
|
|
140
|
+
* });
|
|
141
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
142
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
143
|
+
* enabled: true,
|
|
144
|
+
* hostName: "example.com",
|
|
145
|
+
* originHostHeader: "example.com",
|
|
146
|
+
* priority: 1,
|
|
147
|
+
* weight: 1000,
|
|
148
|
+
* certificateNameCheckEnabled: false,
|
|
149
|
+
* privateLink: {
|
|
150
|
+
* requestMessage: "Request access for Private Link Origin CDN Frontdoor",
|
|
151
|
+
* location: exampleResourceGroup.location,
|
|
152
|
+
* privateLinkTargetId: exampleLinkService.id,
|
|
153
|
+
* },
|
|
154
|
+
* });
|
|
155
|
+
* ```
|
|
156
|
+
* ## Example HCL Configurations
|
|
157
|
+
*
|
|
158
|
+
* * Private Link Origin with Storage Account Blob
|
|
159
|
+
* * Private Link Origin with Storage Account Static Web Site
|
|
160
|
+
* * Private Link Origin with Linux Web Application
|
|
161
|
+
* * Private Link Origin with Internal Load Balancer
|
|
162
|
+
*
|
|
5
163
|
* ## Import
|
|
6
164
|
*
|
|
7
165
|
* Front Door Origins can be imported using the `resource id`, e.g.
|
package/cdn/frontdoorOrigin.js
CHANGED
|
@@ -6,6 +6,164 @@ exports.FrontdoorOrigin = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Manages a Front Door (standard/premium) Origin.
|
|
10
|
+
*
|
|
11
|
+
* !>**IMPORTANT:** If you are attempting to implement an Origin that uses its own Private Link Service with a Load Balancer the Profile resource in your configuration file **must** have a `dependsOn` meta-argument which references the `azure.privatedns.LinkService`, see `Example Usage With Private Link Service` below.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azure from "@pulumi/azure";
|
|
18
|
+
*
|
|
19
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
20
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
21
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
22
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
23
|
+
* });
|
|
24
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
25
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
26
|
+
* loadBalancing: {},
|
|
27
|
+
* });
|
|
28
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
29
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
30
|
+
* enabled: true,
|
|
31
|
+
* certificateNameCheckEnabled: false,
|
|
32
|
+
* hostName: "contoso.com",
|
|
33
|
+
* httpPort: 80,
|
|
34
|
+
* httpsPort: 443,
|
|
35
|
+
* originHostHeader: "www.contoso.com",
|
|
36
|
+
* priority: 1,
|
|
37
|
+
* weight: 1,
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
* ### With Private Link
|
|
41
|
+
*
|
|
42
|
+
* ```typescript
|
|
43
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
44
|
+
* import * as azure from "@pulumi/azure";
|
|
45
|
+
*
|
|
46
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
47
|
+
* const exampleAccount = new azure.storage.Account("exampleAccount", {
|
|
48
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
49
|
+
* location: exampleResourceGroup.location,
|
|
50
|
+
* accountTier: "Premium",
|
|
51
|
+
* accountReplicationType: "LRS",
|
|
52
|
+
* allowNestedItemsToBePublic: false,
|
|
53
|
+
* networkRules: {
|
|
54
|
+
* defaultAction: "Deny",
|
|
55
|
+
* },
|
|
56
|
+
* tags: {
|
|
57
|
+
* environment: "Example",
|
|
58
|
+
* },
|
|
59
|
+
* });
|
|
60
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
61
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
62
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
63
|
+
* });
|
|
64
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
65
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
66
|
+
* loadBalancing: {},
|
|
67
|
+
* });
|
|
68
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
69
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
70
|
+
* enabled: true,
|
|
71
|
+
* certificateNameCheckEnabled: true,
|
|
72
|
+
* hostName: exampleAccount.primaryBlobHost,
|
|
73
|
+
* originHostHeader: exampleAccount.primaryBlobHost,
|
|
74
|
+
* priority: 1,
|
|
75
|
+
* weight: 500,
|
|
76
|
+
* privateLink: {
|
|
77
|
+
* requestMessage: "Request access for Private Link Origin CDN Frontdoor",
|
|
78
|
+
* targetType: "blob",
|
|
79
|
+
* location: exampleAccount.location,
|
|
80
|
+
* privateLinkTargetId: exampleAccount.id,
|
|
81
|
+
* },
|
|
82
|
+
* });
|
|
83
|
+
* ```
|
|
84
|
+
* ### With Private Link Service
|
|
85
|
+
*
|
|
86
|
+
* ```typescript
|
|
87
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
88
|
+
* import * as azure from "@pulumi/azure";
|
|
89
|
+
*
|
|
90
|
+
* const current = azure.core.getClientConfig({});
|
|
91
|
+
* const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
|
|
92
|
+
* const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
|
|
93
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
94
|
+
* location: exampleResourceGroup.location,
|
|
95
|
+
* addressSpaces: ["10.5.0.0/16"],
|
|
96
|
+
* });
|
|
97
|
+
* const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
|
|
98
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
99
|
+
* virtualNetworkName: exampleVirtualNetwork.name,
|
|
100
|
+
* addressPrefixes: ["10.5.1.0/24"],
|
|
101
|
+
* privateLinkServiceNetworkPoliciesEnabled: false,
|
|
102
|
+
* });
|
|
103
|
+
* const examplePublicIp = new azure.network.PublicIp("examplePublicIp", {
|
|
104
|
+
* sku: "Standard",
|
|
105
|
+
* location: exampleResourceGroup.location,
|
|
106
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
107
|
+
* allocationMethod: "Static",
|
|
108
|
+
* });
|
|
109
|
+
* const exampleLoadBalancer = new azure.lb.LoadBalancer("exampleLoadBalancer", {
|
|
110
|
+
* sku: "Standard",
|
|
111
|
+
* location: exampleResourceGroup.location,
|
|
112
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
113
|
+
* frontendIpConfigurations: [{
|
|
114
|
+
* name: examplePublicIp.name,
|
|
115
|
+
* publicIpAddressId: examplePublicIp.id,
|
|
116
|
+
* }],
|
|
117
|
+
* });
|
|
118
|
+
* const exampleLinkService = new azure.privatedns.LinkService("exampleLinkService", {
|
|
119
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
120
|
+
* location: exampleResourceGroup.location,
|
|
121
|
+
* visibilitySubscriptionIds: [current.then(current => current.subscriptionId)],
|
|
122
|
+
* loadBalancerFrontendIpConfigurationIds: [exampleLoadBalancer.frontendIpConfigurations.apply(frontendIpConfigurations => frontendIpConfigurations?.[0]?.id)],
|
|
123
|
+
* natIpConfigurations: [{
|
|
124
|
+
* name: "primary",
|
|
125
|
+
* privateIpAddress: "10.5.1.17",
|
|
126
|
+
* privateIpAddressVersion: "IPv4",
|
|
127
|
+
* subnetId: exampleSubnet.id,
|
|
128
|
+
* primary: true,
|
|
129
|
+
* }],
|
|
130
|
+
* });
|
|
131
|
+
* const exampleFrontdoorProfile = new azure.cdn.FrontdoorProfile("exampleFrontdoorProfile", {
|
|
132
|
+
* resourceGroupName: exampleResourceGroup.name,
|
|
133
|
+
* skuName: "Premium_AzureFrontDoor",
|
|
134
|
+
* }, {
|
|
135
|
+
* dependsOn: [exampleLinkService],
|
|
136
|
+
* });
|
|
137
|
+
* const exampleFrontdoorOriginGroup = new azure.cdn.FrontdoorOriginGroup("exampleFrontdoorOriginGroup", {
|
|
138
|
+
* cdnFrontdoorProfileId: exampleFrontdoorProfile.id,
|
|
139
|
+
* loadBalancing: {
|
|
140
|
+
* additionalLatencyInMilliseconds: 0,
|
|
141
|
+
* sampleSize: 16,
|
|
142
|
+
* successfulSamplesRequired: 3,
|
|
143
|
+
* },
|
|
144
|
+
* });
|
|
145
|
+
* const exampleFrontdoorOrigin = new azure.cdn.FrontdoorOrigin("exampleFrontdoorOrigin", {
|
|
146
|
+
* cdnFrontdoorOriginGroupId: exampleFrontdoorOriginGroup.id,
|
|
147
|
+
* enabled: true,
|
|
148
|
+
* hostName: "example.com",
|
|
149
|
+
* originHostHeader: "example.com",
|
|
150
|
+
* priority: 1,
|
|
151
|
+
* weight: 1000,
|
|
152
|
+
* certificateNameCheckEnabled: false,
|
|
153
|
+
* privateLink: {
|
|
154
|
+
* requestMessage: "Request access for Private Link Origin CDN Frontdoor",
|
|
155
|
+
* location: exampleResourceGroup.location,
|
|
156
|
+
* privateLinkTargetId: exampleLinkService.id,
|
|
157
|
+
* },
|
|
158
|
+
* });
|
|
159
|
+
* ```
|
|
160
|
+
* ## Example HCL Configurations
|
|
161
|
+
*
|
|
162
|
+
* * Private Link Origin with Storage Account Blob
|
|
163
|
+
* * Private Link Origin with Storage Account Static Web Site
|
|
164
|
+
* * Private Link Origin with Linux Web Application
|
|
165
|
+
* * Private Link Origin with Internal Load Balancer
|
|
166
|
+
*
|
|
9
167
|
* ## Import
|
|
10
168
|
*
|
|
11
169
|
* Front Door Origins can be imported using the `resource id`, e.g.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"frontdoorOrigin.js","sourceRoot":"","sources":["../../cdn/frontdoorOrigin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"frontdoorOrigin.js","sourceRoot":"","sources":["../../cdn/frontdoorOrigin.ts"],"names":[],"mappings":"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"}
|
package/cdn/profile.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* Manages a CDN Profile to create a collection of CDN Endpoints.
|
|
4
|
+
*
|
|
5
|
+
* !> **Be Aware:** Azure is rolling out a breaking change on Friday 9th April 2021 which may cause issues with the CDN/FrontDoor resources. More information is available in this GitHub issue as the necessary changes are identified.
|
|
6
|
+
*
|
|
3
7
|
* ## Example Usage
|
|
4
8
|
*
|
|
5
9
|
* ```typescript
|