Skip to content

Commit fb25bb0

Browse files
committed
release: v0.4.15
1 parent 61c9bde commit fb25bb0

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [0.4.14](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.4.13...v0.4.14)
7+
## [0.4.15](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.4.14...v0.4.15)
88
### Changed
9-
- Support AWS Permissions Boundary [d153753f](https://github.com/Altinity/terraform-provider-altinitycloud/commit/d153753f).
9+
- Bump github.com/hashicorp/terraform-plugin-framework-validators to `0.21.0` [#163](https://github.com/Altinity/terraform-provider-altinitycloud/pull/163).
10+
- Bump github.com/hashicorp/terraform-plugin-go to `0.28.0` [#167](https://github.com/Altinity/terraform-provider-altinitycloud/pull/167).
11+
- Bump github.com/hashicorp/terraform-plugin-testing to `1.13.1` [#168](https://github.com/Altinity/terraform-provider-altinitycloud/pull/168).
12+
- Bump github.com/hashicorp/terraform-plugin-framework to `1.15.0` [#164](https://github.com/Altinity/terraform-provider-altinitycloud/pull/164).
13+
- Update Altinity and AWS links in docs [#159](https://github.com/Altinity/terraform-provider-altinitycloud/pull/159).
14+
15+
### Fixed
16+
- Fix `node_groups` schema to use `list` instead of `set` [61c9bde](https://github.com/Altinity/terraform-provider-altinitycloud/commit/61c9bde).
17+
18+
## [0.4.14](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.4.13...v0.4.14)
19+
### Added
20+
- Support for AWS Permissions Boundary [d153753f](https://github.com/Altinity/terraform-provider-altinitycloud/commit/d153753f).
1021

1122

1223
## [0.4.13](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.4.12...v0.4.13)

docs/data-sources/env_aws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Bring Your Own Cloud (BYOC) AWS environment data source.
6464
- "ROUND_ROBIN": load balance traffic across all zones in round-robin fashion (default)
6565
- "ZONE_BEST_EFFORT": keep traffic within same zone
6666
- `maintenance_windows` (Attributes List) List of maintenance windows during which automatic maintenance is permitted. By default updates are applied as soon as they are available. (see [below for nested schema](#nestedatt--maintenance_windows))
67-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
67+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
6868
- `peering_connections` (Attributes List) AWS environment VPC peering configuration. (see [below for nested schema](#nestedatt--peering_connections))
6969
- `permissions_boundary_policy_arn` (String) Policy ARN that sets the maximum permissions for the IAM roles created by the environment. **[IMMUTABLE]**
7070
- `region` (String) AWS region ([docs](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.Regions)). **[IMMUTABLE]**

docs/data-sources/env_azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Bring Your Own Cloud (BYOC) Azure environment data source.
5757
- "ROUND_ROBIN": load balance traffic across all zones in round-robin fashion (default)
5858
- "ZONE_BEST_EFFORT": keep traffic within same zone
5959
- `maintenance_windows` (Attributes List) List of maintenance windows during which automatic maintenance is permitted. By default updates are applied as soon as they are available. (see [below for nested schema](#nestedatt--maintenance_windows))
60-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
60+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
6161
- `private_link_service` (Attributes) Azure Private Link service configuration. (see [below for nested schema](#nestedatt--private_link_service))
6262
- `region` (String) Azure region ([docs](https://azure.microsoft.com/en-us/explore/global-infrastructure/geographies/#overview)). **[IMMUTABLE]**
6363

docs/data-sources/env_gcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Bring Your Own Cloud (BYOC) GCP environment data source.
5858
- "ROUND_ROBIN": load balance traffic across all zones in round-robin fashion (default)
5959
- "ZONE_BEST_EFFORT": keep traffic within same zone
6060
- `maintenance_windows` (Attributes List) List of maintenance windows during which automatic maintenance is permitted. By default updates are applied as soon as they are available. (see [below for nested schema](#nestedatt--maintenance_windows))
61-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
61+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
6262
- `peering_connections` (Attributes List) Network peering configuration. (see [below for nested schema](#nestedatt--peering_connections))
6363
- `private_service_consumers` (List of String) List of project IDs representing the network's private service consumers.
6464
- `region` (String) GCP region ([docs](https://cloud.google.com/about/locations)). **[IMMUTABLE]**

docs/resources/env_aws.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ resource "aws_vpc_peering_connection_accepter" "peer" {
221221

222222
Examples:
223223
- "acme-staging" (where "acme" is your account name)
224-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
224+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
225225
- `region` (String) AWS region ([docs](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html#Concepts.RegionsAndAvailabilityZones.Regions)). **[IMMUTABLE]**
226226

227227
Examples:

docs/resources/env_azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ data "altinitycloud_env_azure_status" "this" {
8888

8989
Examples:
9090
- "acme-staging" (where "acme" is your account name)
91-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
91+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
9292
- `region` (String) Azure region ([docs](https://azure.microsoft.com/en-us/explore/global-infrastructure/geographies/#overview)). **[IMMUTABLE]**
9393

9494
Examples:

docs/resources/env_gcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ data "altinitycloud_env_gcp_status" "this" {
9797

9898
Examples:
9999
- "acme-staging" (where "acme" is your account name)
100-
- `node_groups` (Attributes Set) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
100+
- `node_groups` (Attributes List) List of node groups. At least one required. (see [below for nested schema](#nestedatt--node_groups))
101101
- `region` (String) GCP region ([docs](https://cloud.google.com/about/locations)). **[IMMUTABLE]**
102102

103103
Examples:

0 commit comments

Comments
 (0)