microsoft-cdktfconstructs 1.0.0__tar.gz → 1.2.0__tar.gz
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.
- {microsoft_cdktfconstructs-1.0.0/src/microsoft_cdktfconstructs.egg-info → microsoft_cdktfconstructs-1.2.0}/PKG-INFO +73 -37
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/README.md +72 -36
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/setup.py +14 -2
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/__init__.py +36636 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs/_jsii/__init__.py +2 -2
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/_jsii/terraform-cdk-constructs@1.2.0.jsii.tgz +0 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_actiongroup/__init__.py +1604 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_activitylogalert/__init__.py +1313 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_aks/__init__.py +6270 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_diagnosticsettings/__init__.py +1128 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_metricalert/__init__.py +1748 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_networkinterface/__init__.py +1722 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_networksecuritygroup/__init__.py +1592 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_publicipaddress/__init__.py +1298 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs/azure_resourcegroup/__init__.py +42 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs/azure_storageaccount/__init__.py +461 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_subnet/__init__.py +1300 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_virtualmachine/__init__.py +4814 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_virtualnetwork/__init__.py +1125 -0
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/azure_vmss/__init__.py +5524 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs/core_azure/__init__.py +575 -401
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs/testing/__init__.py +1291 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs.egg-info}/PKG-INFO +73 -37
- microsoft_cdktfconstructs-1.2.0/src/microsoft_cdktfconstructs.egg-info/SOURCES.txt +30 -0
- microsoft_cdktfconstructs-1.0.0/src/microsoft_cdktfconstructs/__init__.py +0 -13512
- microsoft_cdktfconstructs-1.0.0/src/microsoft_cdktfconstructs/_jsii/terraform-cdk-constructs@1.0.0.jsii.tgz +0 -0
- microsoft_cdktfconstructs-1.0.0/src/microsoft_cdktfconstructs/testing/__init__.py +0 -107
- microsoft_cdktfconstructs-1.0.0/src/microsoft_cdktfconstructs.egg-info/SOURCES.txt +0 -18
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/LICENSE +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/MANIFEST.in +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/pyproject.toml +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/setup.cfg +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs/py.typed +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs.egg-info/dependency_links.txt +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs.egg-info/requires.txt +0 -0
- {microsoft_cdktfconstructs-1.0.0 → microsoft_cdktfconstructs-1.2.0}/src/microsoft_cdktfconstructs.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: microsoft-cdktfconstructs
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.0
|
|
4
4
|
Summary: Azure CDK constructs using AZAPI provider for direct Azure REST API access. Version 1.0.0 - Major breaking change migration from AzureRM to AZAPI.
|
|
5
5
|
Home-page: https://github.com/azure/terraform-cdk-constructs.git
|
|
6
6
|
Author: Microsoft
|
|
@@ -47,18 +47,48 @@ With AZAPI L2 Constructs, you get the following benefits:
|
|
|
47
47
|
* **Version Flexibility**: Choose specific API versions for your resources
|
|
48
48
|
* **Rapid Feature Adoption**: Access new Azure features immediately without waiting for provider updates
|
|
49
49
|
* **Enhanced Abstraction**: Higher-level abstractions over Azure resources with type safety
|
|
50
|
+
* **Built-in Monitoring**: One-line setup for comprehensive monitoring with customizable alerts and diagnostic settings
|
|
51
|
+
* **Schema Validation**: Automatic validation of properties against Azure API schemas
|
|
50
52
|
* **Reusability**: Encapsulate common patterns and best practices in your infrastructure code
|
|
53
|
+
* **Testing Utilities**: Helper functions for integration tests including naming conventions, metadata, and resource cleanup
|
|
51
54
|
* **Direct IDE Integration**: Access detailed documentation directly within your IDE
|
|
52
55
|
* **Zero Provider Setup**: AZAPI provider bindings included in the package
|
|
53
56
|
|
|
54
57
|
## Currently Supported Services
|
|
55
58
|
|
|
59
|
+
### Compute
|
|
60
|
+
|
|
61
|
+
| Service | API Versions | Monitoring Support | Status |
|
|
62
|
+
|---------|-------------|-------------------|--------|
|
|
63
|
+
| [Virtual Machines](./src/azure-virtualmachine/README.md) | 2024-07-01, 2024-11-01, 2025-04-01 | ✅ Built-in | ✅ Available |
|
|
64
|
+
| [AKS Clusters](./src/azure-aks/README.md) | 2025-05-01, 2025-07-01, 2025-08-01 | ✅ Built-in | ✅ Available |
|
|
65
|
+
| [Virtual Machine Scale Sets](./src/azure-vmss/README.md) | 2025-01-02, 2025-02-01, 2025-04-01 | ✅ Built-in | ✅ Available |
|
|
66
|
+
|
|
67
|
+
### Networking
|
|
68
|
+
|
|
69
|
+
| Service | API Versions | Status |
|
|
70
|
+
|---------|-------------|--------|
|
|
71
|
+
| [Virtual Networks](./src/azure-virtualnetwork/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
72
|
+
| [Subnets](./src/azure-subnet/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
73
|
+
| [Network Interfaces](./src/azure-networkinterface/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
74
|
+
| [Network Security Groups](./src/azure-networksecuritygroup/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
75
|
+
| [Public IP Addresses](./src/azure-publicipaddress/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
76
|
+
|
|
77
|
+
### Monitoring & Alerting
|
|
78
|
+
|
|
56
79
|
| Service | API Versions | Status |
|
|
57
80
|
|---------|-------------|--------|
|
|
58
|
-
|
|
|
59
|
-
|
|
|
81
|
+
| [Action Groups](./src/azure-actiongroup/README.md) | 2021-09-01 | ✅ Available |
|
|
82
|
+
| [Metric Alerts](./src/azure-metricalert/README.md) | 2018-03-01 | ✅ Available |
|
|
83
|
+
| [Activity Log Alerts](./src/azure-activitylogalert/README.md) | 2020-10-01 | ✅ Available |
|
|
84
|
+
| [Diagnostic Settings](./src/azure-diagnosticsettings/README.md) | 2016-09-01, 2021-05-01-preview | ✅ Available |
|
|
85
|
+
|
|
86
|
+
### Foundation
|
|
60
87
|
|
|
61
|
-
|
|
88
|
+
| Service | API Versions | Status |
|
|
89
|
+
|---------|-------------|--------|
|
|
90
|
+
| [Resource Groups](./src/azure-resourcegroup/README.md) | 2024-11-01, 2025-01-01, 2025-03-01 | ✅ Available |
|
|
91
|
+
| [Storage Accounts](./src/azure-storageaccount/README.md) | 2023-01-01, 2023-05-01, 2024-01-01 | ✅ Available |
|
|
62
92
|
|
|
63
93
|
## Quick Example
|
|
64
94
|
|
|
@@ -127,45 +157,50 @@ npm install @microsoft/terraform-cdk-constructs
|
|
|
127
157
|
|
|
128
158
|
That's it! The AZAPI provider classes are included in the package, so you don't need to configure additional providers or generate bindings.
|
|
129
159
|
|
|
130
|
-
|
|
160
|
+
## Built-in Monitoring & Alerting
|
|
161
|
+
|
|
162
|
+
Azure L2 Constructs include comprehensive monitoring capabilities that can be enabled with a single method call. The monitoring framework automatically creates metric alerts, diagnostic settings, and activity log alerts for supported resources.
|
|
163
|
+
|
|
164
|
+
### Quick Example
|
|
131
165
|
|
|
132
166
|
```python
|
|
133
|
-
import
|
|
134
|
-
import {
|
|
135
|
-
|
|
167
|
+
import { VirtualMachine } from "@microsoft/terraform-cdk-constructs/azure-virtualmachine";
|
|
168
|
+
import { ActionGroup } from "@microsoft/terraform-cdk-constructs/azure-actiongroup";
|
|
169
|
+
|
|
170
|
+
// Enable monitoring with one line
|
|
171
|
+
const vm = new VirtualMachine(this, "vm", {
|
|
172
|
+
name: "my-vm",
|
|
173
|
+
// ... VM configuration ...
|
|
174
|
+
monitoring: VirtualMachine.defaultMonitoring(actionGroup.id, workspaceId),
|
|
175
|
+
});
|
|
176
|
+
```
|
|
136
177
|
|
|
137
|
-
|
|
138
|
-
constructor(scope: Construct, name: string) {
|
|
139
|
-
super(scope, name);
|
|
178
|
+
### Supported Resources
|
|
140
179
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
project: "myproject"
|
|
148
|
-
}
|
|
149
|
-
});
|
|
180
|
+
| Resource | Monitoring Documentation |
|
|
181
|
+
|----------|-------------------------|
|
|
182
|
+
| Virtual Machines | [VM Monitoring Guide](./src/azure-virtualmachine/README.md#monitoring) |
|
|
183
|
+
| AKS Clusters | [AKS Monitoring Guide](./src/azure-aks/README.md#monitoring) |
|
|
184
|
+
| Virtual Machine Scale Sets | [VMSS Monitoring Guide](./src/azure-vmss/README.md#monitoring) |
|
|
185
|
+
| Storage Accounts | [Storage Monitoring Guide](./src/azure-storageaccount/README.md#monitoring) |
|
|
150
186
|
|
|
151
|
-
|
|
152
|
-
const storage = new azcdk.azure_storageaccount.StorageAccount(this, "storage", {
|
|
153
|
-
name: "mystorageaccount",
|
|
154
|
-
location: "eastus",
|
|
155
|
-
resourceGroupId: rg.id,
|
|
156
|
-
sku: { name: "Standard_LRS" },
|
|
157
|
-
tags: {
|
|
158
|
-
environment: "production",
|
|
159
|
-
project: "myproject"
|
|
160
|
-
}
|
|
161
|
-
});
|
|
162
|
-
}
|
|
163
|
-
}
|
|
187
|
+
See the [Monitoring Guide](./docs/monitoring-guide.md) for comprehensive documentation on monitoring capabilities, customization options, and best practices.
|
|
164
188
|
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
189
|
+
## Networking Constructs
|
|
190
|
+
|
|
191
|
+
Build complete Azure networking infrastructure with type-safe constructs that provide automatic validation and version management.
|
|
192
|
+
|
|
193
|
+
### Available Components
|
|
194
|
+
|
|
195
|
+
| Component | Documentation |
|
|
196
|
+
|-----------|--------------|
|
|
197
|
+
| [Virtual Networks](./src/azure-virtualnetwork/README.md) | Define address spaces and network isolation with custom DNS and DDoS protection |
|
|
198
|
+
| [Subnets](./src/azure-subnet/README.md) | Segment networks with service endpoints, delegations, and NSG association |
|
|
199
|
+
| [Network Interfaces](./src/azure-networkinterface/README.md) | Attach to VMs with static/dynamic IPs and accelerated networking |
|
|
200
|
+
| [Network Security Groups](./src/azure-networksecuritygroup/README.md) | Control traffic with inbound/outbound security rules |
|
|
201
|
+
| [Public IP Addresses](./src/azure-publicipaddress/README.md) | Expose resources with static/dynamic allocation |
|
|
202
|
+
|
|
203
|
+
See individual service documentation for detailed configuration examples and best practices.
|
|
169
204
|
|
|
170
205
|
## Version-Specific Usage
|
|
171
206
|
|
|
@@ -240,6 +275,7 @@ We welcome contributions to this project! See our documentation on [how to get s
|
|
|
240
275
|
## Documentation
|
|
241
276
|
|
|
242
277
|
* [Architecture Documentation](./docs/ARCHITECTURE.md) - High-level architecture and design patterns
|
|
278
|
+
* [Monitoring Guide](./docs/monitoring-guide.md) - Comprehensive monitoring and alerting documentation
|
|
243
279
|
* [Versioning and Migrations User Guide](./docs/versioning-and-migrations-user-guide.md) - API version management and migration guidance
|
|
244
280
|
* [Testing Guide](./docs/testing.md) - Testing practices and utilities
|
|
245
281
|
* [Design Guide](./docs/design_guide.md) - Module design guidelines
|
|
@@ -20,18 +20,48 @@ With AZAPI L2 Constructs, you get the following benefits:
|
|
|
20
20
|
* **Version Flexibility**: Choose specific API versions for your resources
|
|
21
21
|
* **Rapid Feature Adoption**: Access new Azure features immediately without waiting for provider updates
|
|
22
22
|
* **Enhanced Abstraction**: Higher-level abstractions over Azure resources with type safety
|
|
23
|
+
* **Built-in Monitoring**: One-line setup for comprehensive monitoring with customizable alerts and diagnostic settings
|
|
24
|
+
* **Schema Validation**: Automatic validation of properties against Azure API schemas
|
|
23
25
|
* **Reusability**: Encapsulate common patterns and best practices in your infrastructure code
|
|
26
|
+
* **Testing Utilities**: Helper functions for integration tests including naming conventions, metadata, and resource cleanup
|
|
24
27
|
* **Direct IDE Integration**: Access detailed documentation directly within your IDE
|
|
25
28
|
* **Zero Provider Setup**: AZAPI provider bindings included in the package
|
|
26
29
|
|
|
27
30
|
## Currently Supported Services
|
|
28
31
|
|
|
32
|
+
### Compute
|
|
33
|
+
|
|
34
|
+
| Service | API Versions | Monitoring Support | Status |
|
|
35
|
+
|---------|-------------|-------------------|--------|
|
|
36
|
+
| [Virtual Machines](./src/azure-virtualmachine/README.md) | 2024-07-01, 2024-11-01, 2025-04-01 | ✅ Built-in | ✅ Available |
|
|
37
|
+
| [AKS Clusters](./src/azure-aks/README.md) | 2025-05-01, 2025-07-01, 2025-08-01 | ✅ Built-in | ✅ Available |
|
|
38
|
+
| [Virtual Machine Scale Sets](./src/azure-vmss/README.md) | 2025-01-02, 2025-02-01, 2025-04-01 | ✅ Built-in | ✅ Available |
|
|
39
|
+
|
|
40
|
+
### Networking
|
|
41
|
+
|
|
42
|
+
| Service | API Versions | Status |
|
|
43
|
+
|---------|-------------|--------|
|
|
44
|
+
| [Virtual Networks](./src/azure-virtualnetwork/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
45
|
+
| [Subnets](./src/azure-subnet/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
46
|
+
| [Network Interfaces](./src/azure-networkinterface/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
47
|
+
| [Network Security Groups](./src/azure-networksecuritygroup/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
48
|
+
| [Public IP Addresses](./src/azure-publicipaddress/README.md) | 2024-07-01, 2024-10-01, 2025-01-01 | ✅ Available |
|
|
49
|
+
|
|
50
|
+
### Monitoring & Alerting
|
|
51
|
+
|
|
29
52
|
| Service | API Versions | Status |
|
|
30
53
|
|---------|-------------|--------|
|
|
31
|
-
|
|
|
32
|
-
|
|
|
54
|
+
| [Action Groups](./src/azure-actiongroup/README.md) | 2021-09-01 | ✅ Available |
|
|
55
|
+
| [Metric Alerts](./src/azure-metricalert/README.md) | 2018-03-01 | ✅ Available |
|
|
56
|
+
| [Activity Log Alerts](./src/azure-activitylogalert/README.md) | 2020-10-01 | ✅ Available |
|
|
57
|
+
| [Diagnostic Settings](./src/azure-diagnosticsettings/README.md) | 2016-09-01, 2021-05-01-preview | ✅ Available |
|
|
58
|
+
|
|
59
|
+
### Foundation
|
|
33
60
|
|
|
34
|
-
|
|
61
|
+
| Service | API Versions | Status |
|
|
62
|
+
|---------|-------------|--------|
|
|
63
|
+
| [Resource Groups](./src/azure-resourcegroup/README.md) | 2024-11-01, 2025-01-01, 2025-03-01 | ✅ Available |
|
|
64
|
+
| [Storage Accounts](./src/azure-storageaccount/README.md) | 2023-01-01, 2023-05-01, 2024-01-01 | ✅ Available |
|
|
35
65
|
|
|
36
66
|
## Quick Example
|
|
37
67
|
|
|
@@ -100,45 +130,50 @@ npm install @microsoft/terraform-cdk-constructs
|
|
|
100
130
|
|
|
101
131
|
That's it! The AZAPI provider classes are included in the package, so you don't need to configure additional providers or generate bindings.
|
|
102
132
|
|
|
103
|
-
|
|
133
|
+
## Built-in Monitoring & Alerting
|
|
134
|
+
|
|
135
|
+
Azure L2 Constructs include comprehensive monitoring capabilities that can be enabled with a single method call. The monitoring framework automatically creates metric alerts, diagnostic settings, and activity log alerts for supported resources.
|
|
136
|
+
|
|
137
|
+
### Quick Example
|
|
104
138
|
|
|
105
139
|
```python
|
|
106
|
-
import
|
|
107
|
-
import {
|
|
108
|
-
|
|
140
|
+
import { VirtualMachine } from "@microsoft/terraform-cdk-constructs/azure-virtualmachine";
|
|
141
|
+
import { ActionGroup } from "@microsoft/terraform-cdk-constructs/azure-actiongroup";
|
|
142
|
+
|
|
143
|
+
// Enable monitoring with one line
|
|
144
|
+
const vm = new VirtualMachine(this, "vm", {
|
|
145
|
+
name: "my-vm",
|
|
146
|
+
// ... VM configuration ...
|
|
147
|
+
monitoring: VirtualMachine.defaultMonitoring(actionGroup.id, workspaceId),
|
|
148
|
+
});
|
|
149
|
+
```
|
|
109
150
|
|
|
110
|
-
|
|
111
|
-
constructor(scope: Construct, name: string) {
|
|
112
|
-
super(scope, name);
|
|
151
|
+
### Supported Resources
|
|
113
152
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
project: "myproject"
|
|
121
|
-
}
|
|
122
|
-
});
|
|
153
|
+
| Resource | Monitoring Documentation |
|
|
154
|
+
|----------|-------------------------|
|
|
155
|
+
| Virtual Machines | [VM Monitoring Guide](./src/azure-virtualmachine/README.md#monitoring) |
|
|
156
|
+
| AKS Clusters | [AKS Monitoring Guide](./src/azure-aks/README.md#monitoring) |
|
|
157
|
+
| Virtual Machine Scale Sets | [VMSS Monitoring Guide](./src/azure-vmss/README.md#monitoring) |
|
|
158
|
+
| Storage Accounts | [Storage Monitoring Guide](./src/azure-storageaccount/README.md#monitoring) |
|
|
123
159
|
|
|
124
|
-
|
|
125
|
-
const storage = new azcdk.azure_storageaccount.StorageAccount(this, "storage", {
|
|
126
|
-
name: "mystorageaccount",
|
|
127
|
-
location: "eastus",
|
|
128
|
-
resourceGroupId: rg.id,
|
|
129
|
-
sku: { name: "Standard_LRS" },
|
|
130
|
-
tags: {
|
|
131
|
-
environment: "production",
|
|
132
|
-
project: "myproject"
|
|
133
|
-
}
|
|
134
|
-
});
|
|
135
|
-
}
|
|
136
|
-
}
|
|
160
|
+
See the [Monitoring Guide](./docs/monitoring-guide.md) for comprehensive documentation on monitoring capabilities, customization options, and best practices.
|
|
137
161
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
162
|
+
## Networking Constructs
|
|
163
|
+
|
|
164
|
+
Build complete Azure networking infrastructure with type-safe constructs that provide automatic validation and version management.
|
|
165
|
+
|
|
166
|
+
### Available Components
|
|
167
|
+
|
|
168
|
+
| Component | Documentation |
|
|
169
|
+
|-----------|--------------|
|
|
170
|
+
| [Virtual Networks](./src/azure-virtualnetwork/README.md) | Define address spaces and network isolation with custom DNS and DDoS protection |
|
|
171
|
+
| [Subnets](./src/azure-subnet/README.md) | Segment networks with service endpoints, delegations, and NSG association |
|
|
172
|
+
| [Network Interfaces](./src/azure-networkinterface/README.md) | Attach to VMs with static/dynamic IPs and accelerated networking |
|
|
173
|
+
| [Network Security Groups](./src/azure-networksecuritygroup/README.md) | Control traffic with inbound/outbound security rules |
|
|
174
|
+
| [Public IP Addresses](./src/azure-publicipaddress/README.md) | Expose resources with static/dynamic allocation |
|
|
175
|
+
|
|
176
|
+
See individual service documentation for detailed configuration examples and best practices.
|
|
142
177
|
|
|
143
178
|
## Version-Specific Usage
|
|
144
179
|
|
|
@@ -213,6 +248,7 @@ We welcome contributions to this project! See our documentation on [how to get s
|
|
|
213
248
|
## Documentation
|
|
214
249
|
|
|
215
250
|
* [Architecture Documentation](./docs/ARCHITECTURE.md) - High-level architecture and design patterns
|
|
251
|
+
* [Monitoring Guide](./docs/monitoring-guide.md) - Comprehensive monitoring and alerting documentation
|
|
216
252
|
* [Versioning and Migrations User Guide](./docs/versioning-and-migrations-user-guide.md) - API version management and migration guidance
|
|
217
253
|
* [Testing Guide](./docs/testing.md) - Testing practices and utilities
|
|
218
254
|
* [Design Guide](./docs/design_guide.md) - Module design guidelines
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "microsoft-cdktfconstructs",
|
|
8
|
-
"version": "1.
|
|
8
|
+
"version": "1.2.0",
|
|
9
9
|
"description": "Azure CDK constructs using AZAPI provider for direct Azure REST API access. Version 1.0.0 - Major breaking change migration from AzureRM to AZAPI.",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"url": "https://github.com/azure/terraform-cdk-constructs.git",
|
|
@@ -23,14 +23,26 @@ kwargs = json.loads(
|
|
|
23
23
|
"packages": [
|
|
24
24
|
"microsoft_cdktfconstructs",
|
|
25
25
|
"microsoft_cdktfconstructs._jsii",
|
|
26
|
+
"microsoft_cdktfconstructs.azure_actiongroup",
|
|
27
|
+
"microsoft_cdktfconstructs.azure_activitylogalert",
|
|
28
|
+
"microsoft_cdktfconstructs.azure_aks",
|
|
29
|
+
"microsoft_cdktfconstructs.azure_diagnosticsettings",
|
|
30
|
+
"microsoft_cdktfconstructs.azure_metricalert",
|
|
31
|
+
"microsoft_cdktfconstructs.azure_networkinterface",
|
|
32
|
+
"microsoft_cdktfconstructs.azure_networksecuritygroup",
|
|
33
|
+
"microsoft_cdktfconstructs.azure_publicipaddress",
|
|
26
34
|
"microsoft_cdktfconstructs.azure_resourcegroup",
|
|
27
35
|
"microsoft_cdktfconstructs.azure_storageaccount",
|
|
36
|
+
"microsoft_cdktfconstructs.azure_subnet",
|
|
37
|
+
"microsoft_cdktfconstructs.azure_virtualmachine",
|
|
38
|
+
"microsoft_cdktfconstructs.azure_virtualnetwork",
|
|
39
|
+
"microsoft_cdktfconstructs.azure_vmss",
|
|
28
40
|
"microsoft_cdktfconstructs.core_azure",
|
|
29
41
|
"microsoft_cdktfconstructs.testing"
|
|
30
42
|
],
|
|
31
43
|
"package_data": {
|
|
32
44
|
"microsoft_cdktfconstructs._jsii": [
|
|
33
|
-
"terraform-cdk-constructs@1.
|
|
45
|
+
"terraform-cdk-constructs@1.2.0.jsii.tgz"
|
|
34
46
|
],
|
|
35
47
|
"microsoft_cdktfconstructs": [
|
|
36
48
|
"py.typed"
|