Skip to content

Commit 9915229

Browse files
authored
Merge pull request #1071 from duplocloud/hotfix/0.11.12
Hotfix Release v0.11.12
2 parents f247611 + b13f1e6 commit 9915229

File tree

91 files changed

+1694
-1113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1694
-1113
lines changed

.github/workflows/dev-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ jobs:
1818
name: Set up Go
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: '^1.20.0'
21+
go-version-file: 'go.mod'
2222
cache: false
23+
- name: Clean Go Build Cache
24+
run: go clean -cache -modcache -testcache
2325
-
2426
name: Run linting
2527
uses: golangci/[email protected]

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
linters-settings:
22
errcheck:
3-
ignore: 'Set'
3+
ignore: 'Set'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ NAMESPACE=duplocloud
88

99
NAME=duplocloud
1010
BINARY=terraform-provider-${NAME}
11-
VERSION=0.11.11
11+
VERSION=0.11.12
1212
#mac
1313
#OS_ARCH=darwin_amd64
1414
#OS_ARCH=linux_amd64

docs/resources/aws_cloudfront_distribution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ resource "duplocloud_aws_cloudfront_distribution" "cloudfront" {
9797
### Required
9898

9999
- `default_cache_behavior` (Block List, Min: 1, Max: 1) (see [below for nested schema](#nestedblock--default_cache_behavior))
100-
- `enabled` (Boolean) Whether the distribution is enabled to accept end user requests for content.
101100
- `origin` (Block Set, Min: 1) (see [below for nested schema](#nestedblock--origin))
102101
- `tenant_id` (String) The GUID of the tenant that the aws cloudfront distribution will be created in.
103102
- `viewer_certificate` (Block List, Min: 1, Max: 1) (see [below for nested schema](#nestedblock--viewer_certificate))
@@ -109,6 +108,7 @@ resource "duplocloud_aws_cloudfront_distribution" "cloudfront" {
109108
- `cors_allowed_host_names` (List of String)
110109
- `custom_error_response` (Block Set) (see [below for nested schema](#nestedblock--custom_error_response))
111110
- `default_root_object` (String) The object that you want CloudFront to return (for example, index.html) when an end user requests the root URL.
111+
- `enabled` (Boolean) Whether the distribution is enabled to accept end user requests for content. Defaults to `true`.
112112
- `http_version` (String) The maximum HTTP version to support on the distribution. Allowed values are `http1.1` and `http2` Defaults to `http2`.
113113
- `is_ipv6_enabled` (Boolean) Defaults to `false`.
114114
- `logging_config` (Block List, Max: 1) (see [below for nested schema](#nestedblock--logging_config))
@@ -273,7 +273,7 @@ Required:
273273

274274
Optional:
275275

276-
- `origin_access_identity` (String)
276+
- `origin_access_identity` (String) The CloudFront origin access identity to associate with the origin. This is used to restrict access to the S3 bucket. Duplo assigns this automatically when the "use_origin_access_identity" is set to true. Any explicit value set here will be ignored and duplo created oai will be used.
277277

278278

279279

docs/resources/rds_instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ See AWS documentation for the [available instance types](https://aws.amazon.com/
441441
- `db_name` (String) The name of the database to create when the DB instance is created. This is not applicable for update.
442442
- `db_subnet_group_name` (String) Name of DB subnet group. DB instance will be created in the VPC associated with the DB subnet group.
443443
- `deletion_protection` (Boolean) If the DB instance should have deletion protection enabled.The database can't be deleted when this value is set to `true`. This setting is not applicable for document db cluster instance. Defaults to `false`.
444-
- `enable_iam_auth` (Boolean) Whether or not to enable the RDS IAM authentication.
444+
- `enable_iam_auth` (Boolean) Whether or not to enable the RDS IAM authentication. It can only be set during instance creation.
445445
- `enable_logging` (Boolean) Whether or not to enable the RDS instance logging. This setting is not applicable for document db cluster instance.
446446
- `encrypt_storage` (Boolean) Whether or not to encrypt the RDS instance storage.
447447
- `engine_version` (String) The database engine version to use the for the RDS instance.

docs/resources/tenant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ resource "duplocloud_tenant_config" "tenant_config" {
239239

240240
### Required
241241

242-
- `account_name` (String) The name of the tenant. Tenant names are globally unique, and cannot be a prefix of any other tenant name.
242+
- `account_name` (String) The name of the tenant. Tenant names are globally unique, and cannot be a prefix of any other tenant name. Will be converted to lowercase.
243243
- `plan_id` (String) The name of the plan under which the tenant will be created.
244244

245245
### Optional

0 commit comments

Comments
 (0)