Skip to content

Commit f7e5e42

Browse files
Updated with the [latest changes](https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v1.4.2) from the terraform-aws-ecs@v1.4.2 source branch. (#3012)
Co-authored-by: docs-sourcer[bot] <99042413+docs-sourcer[bot]@users.noreply.github.com>
1 parent 31e25c9 commit f7e5e42

File tree

10 files changed

+324
-118
lines changed

10 files changed

+324
-118
lines changed

docs/reference/modules/terraform-aws-ecs/ecs-cluster/ecs-cluster.md

Lines changed: 160 additions & 21 deletions
Large diffs are not rendered by default.

docs/reference/modules/terraform-aws-ecs/ecs-daemon-service/ecs-daemon-service.md

Lines changed: 58 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="1.3.0"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="1.4.0"/>
1313

1414
# ECS Daemon Service Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-daemon-service" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-daemon-service" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

18-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v1.3.0" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
18+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v1.4.0" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

2020
This Terraform Module creates an [ECS Daemon Service](http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html)
2121
that you can use to deploy exactly one task on each active container instance that meets all of the task placement constraints
@@ -33,7 +33,7 @@ environment variables to set, and so on. To actually run an ECS Task, you define
3333

3434
## How do you create an ECS cluster?
3535

36-
To use ECS, you first deploy one or more EC2 Instances into a "cluster". See the [ecs-cluster module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-cluster)
36+
To use ECS, you first deploy one or more EC2 Instances into a "cluster". See the [ecs-cluster module](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-cluster)
3737
for how to create a cluster.
3838

3939
## How do you add additional IAM policies?
@@ -82,7 +82,7 @@ EOF
8282
8383
module "ecs_daemon_service" {
8484
85-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v1.3.0"
85+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v1.4.2"
8686
8787
# ----------------------------------------------------------------------------------------------------
8888
# REQUIRED VARIABLES
@@ -127,6 +127,12 @@ module "ecs_daemon_service" {
127127
# Prefix for name of iam role and policy that allows cloudwatch and ecr access
128128
custom_task_execution_name_prefix = null
129129
130+
# Set enable to 'true' to prevent the task from attempting to continuously
131+
# redeploy after a failed health check. Set rollback to 'true' to also
132+
# automatically roll back to the last successful deployment. If this setting
133+
# is used, both 'enable' and 'rollback' are required fields.
134+
deployment_circuit_breaker = null
135+
130136
# Type of deployment controller, possible values: CODE_DEPLOY, ECS, EXTERNAL
131137
deployment_controller = null
132138
@@ -161,6 +167,10 @@ module "ecs_daemon_service" {
161167
# useful when using 'wait_for_steady_state'.
162168
service_create_update_timeout = "20m"
163169
170+
# Use this variable to adjust the default timeout of 10m for delete operations
171+
# the the ECS service.
172+
service_delete_timeout = "10m"
173+
164174
# A map of tags to apply to the ECS service. Each item in this list should be
165175
# a map with the parameters key and value.
166176
service_tags = {}
@@ -204,7 +214,7 @@ module "ecs_daemon_service" {
204214
# ------------------------------------------------------------------------------------------------------
205215
206216
terraform {
207-
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v1.3.0"
217+
source = "git::git@github.com:gruntwork-io/terraform-aws-ecs.git//modules/ecs-daemon-service?ref=v1.4.2"
208218
}
209219
210220
inputs = {
@@ -252,6 +262,12 @@ inputs = {
252262
# Prefix for name of iam role and policy that allows cloudwatch and ecr access
253263
custom_task_execution_name_prefix = null
254264
265+
# Set enable to 'true' to prevent the task from attempting to continuously
266+
# redeploy after a failed health check. Set rollback to 'true' to also
267+
# automatically roll back to the last successful deployment. If this setting
268+
# is used, both 'enable' and 'rollback' are required fields.
269+
deployment_circuit_breaker = null
270+
255271
# Type of deployment controller, possible values: CODE_DEPLOY, ECS, EXTERNAL
256272
deployment_controller = null
257273
@@ -286,6 +302,10 @@ inputs = {
286302
# useful when using 'wait_for_steady_state'.
287303
service_create_update_timeout = "20m"
288304
305+
# Use this variable to adjust the default timeout of 10m for delete operations
306+
# the the ECS service.
307+
service_delete_timeout = "10m"
308+
289309
# A map of tags to apply to the ECS service. Each item in this list should be
290310
# a map with the parameters key and value.
291311
service_tags = {}
@@ -403,6 +423,25 @@ Prefix for name of iam role and policy that allows cloudwatch and ecr access
403423
<HclListItemDefaultValue defaultValue="null"/>
404424
</HclListItem>
405425

426+
<HclListItem name="deployment_circuit_breaker" requirement="optional" type="object(…)">
427+
<HclListItemDescription>
428+
429+
Set enable to 'true' to prevent the task from attempting to continuously redeploy after a failed health check. Set rollback to 'true' to also automatically roll back to the last successful deployment. If this setting is used, both 'enable' and 'rollback' are required fields.
430+
431+
</HclListItemDescription>
432+
<HclListItemTypeDetails>
433+
434+
```hcl
435+
object({
436+
enable = bool
437+
rollback = bool
438+
})
439+
```
440+
441+
</HclListItemTypeDetails>
442+
<HclListItemDefaultValue defaultValue="null"/>
443+
</HclListItem>
444+
406445
<HclListItem name="deployment_controller" requirement="optional" type="string">
407446
<HclListItemDescription>
408447

@@ -474,6 +513,15 @@ Use this variable to adjust the default timeout of 20m for create and update ope
474513
<HclListItemDefaultValue defaultValue="&quot;20m&quot;"/>
475514
</HclListItem>
476515

516+
<HclListItem name="service_delete_timeout" requirement="optional" type="string">
517+
<HclListItemDescription>
518+
519+
Use this variable to adjust the default timeout of 10m for delete operations the the ECS service.
520+
521+
</HclListItemDescription>
522+
<HclListItemDefaultValue defaultValue="&quot;10m&quot;"/>
523+
</HclListItem>
524+
477525
<HclListItem name="service_tags" requirement="optional" type="map(string)">
478526
<HclListItemDescription>
479527

@@ -587,11 +635,11 @@ If true, Terraform will wait for the service to reach a steady state—as in, th
587635
<!-- ##DOCS-SOURCER-START
588636
{
589637
"originalSources": [
590-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-daemon-service/readme.md",
591-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-daemon-service/variables.tf",
592-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-daemon-service/outputs.tf"
638+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-daemon-service/readme.md",
639+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-daemon-service/variables.tf",
640+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-daemon-service/outputs.tf"
593641
],
594642
"sourcePlugin": "module-catalog-api",
595-
"hash": "8398c44495b53584a1c9948145f83290"
643+
"hash": "ee5b879f73944a903f495e6fcf4fb673"
596644
}
597645
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-deploy/ecs-deploy.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="0.37.0"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="0.37.0"/>
1313

1414
# ECS Deployment Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-deploy" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-deploy" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.37.0" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -48,7 +48,7 @@ The `run-ecs-task` script assumes you already have the following:
4848
resource](https://www.terraform.io/docs/providers/aws/r/ecs_task_definition.html). You'll need to know the family
4949
name and revision of the ECS Task Definition you want to run.
5050

51-
Check out the [deploy-ecs-task example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/examples/deploy-ecs-task) for working sample code of both of the above.
51+
Check out the [deploy-ecs-task example](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/examples/deploy-ecs-task) for working sample code of both of the above.
5252

5353
To run the ECS Task Definition `db-backup` at revision `3` in an ECS Cluster named `ecs-stage` in `us-west-2`, use the
5454
following command:
@@ -95,11 +95,11 @@ container instead of the command configured in the Task Definition.
9595
<!-- ##DOCS-SOURCER-START
9696
{
9797
"originalSources": [
98-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-deploy/readme.md",
99-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-deploy/variables.tf",
100-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-deploy/outputs.tf"
98+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-deploy/readme.md",
99+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-deploy/variables.tf",
100+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-deploy/outputs.tf"
101101
],
102102
"sourcePlugin": "module-catalog-api",
103-
"hash": "79c137b2ba835cf3d93f4cd615588392"
103+
"hash": "d07626b0fa849b91e33fc88b5a108e7f"
104104
}
105105
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-fargate/ecs-fargate.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="0.24.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="0.24.1"/>
1313

1414
# Fargate Module
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-fargate" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-fargate" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.24.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -23,11 +23,11 @@ guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/r
2323
<!-- ##DOCS-SOURCER-START
2424
{
2525
"originalSources": [
26-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-fargate/readme.md",
27-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-fargate/variables.tf",
28-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-fargate/outputs.tf"
26+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-fargate/readme.md",
27+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-fargate/variables.tf",
28+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-fargate/outputs.tf"
2929
],
3030
"sourcePlugin": "module-catalog-api",
31-
"hash": "47ac8179ec336335ee6850b6f77c9985"
31+
"hash": "f66bac1c247f9df543463caac49555fc"
3232
}
3333
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-scripts/ecs-scripts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="0.32.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="0.32.1"/>
1313

1414
# ECS Scripts
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-scripts" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-scripts" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.32.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -31,7 +31,7 @@ You can install the helpers using the [Gruntwork Installer](https://github.com/g
3131
gruntwork-install --module-name "ecs-scripts" --repo "https://github.com/gruntwork-io/terraform-aws-ecs" --tag "0.0.1"
3232
```
3333

34-
For an example, see the [Packer](https://www.packer.io/) template under [/examples/example-ecs-instance-ami/build.json](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/examples/example-ecs-instance-ami/build.json).
34+
For an example, see the [Packer](https://www.packer.io/) template under [/examples/example-ecs-instance-ami/build.json](https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/examples/example-ecs-instance-ami/build.json).
3535

3636
## Using the configure-ecs-instance helper
3737

@@ -79,11 +79,11 @@ Run `configure-ecs-instance --help` to see all available options.
7979
<!-- ##DOCS-SOURCER-START
8080
{
8181
"originalSources": [
82-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-scripts/readme.md",
83-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-scripts/variables.tf",
84-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-scripts/outputs.tf"
82+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-scripts/readme.md",
83+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-scripts/variables.tf",
84+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-scripts/outputs.tf"
8585
],
8686
"sourcePlugin": "module-catalog-api",
87-
"hash": "69528d1fc0f1a14b90779e93f352583d"
87+
"hash": "9f7b626ee5bed8a4b36db35ef4883a82"
8888
}
8989
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-service-with-alb/ecs-service-with-alb.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="0.24.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="0.24.1"/>
1313

1414
# ECS Service with ALB
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-alb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-alb" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.24.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -23,11 +23,11 @@ guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/r
2323
<!-- ##DOCS-SOURCER-START
2424
{
2525
"originalSources": [
26-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-alb/readme.md",
27-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-alb/variables.tf",
28-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-alb/outputs.tf"
26+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-alb/readme.md",
27+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-alb/variables.tf",
28+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-alb/outputs.tf"
2929
],
3030
"sourcePlugin": "module-catalog-api",
31-
"hash": "bb7bdfd6d51b960c664fcfcdd7ec521c"
31+
"hash": "9236b9db64468844e0ed44926ad9ccdb"
3232
}
3333
##DOCS-SOURCER-END -->

docs/reference/modules/terraform-aws-ecs/ecs-service-with-discovery/ecs-service-with-discovery.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import VersionBadge from '../../../../../src/components/VersionBadge.tsx';
99
import { HclListItem, HclListItemDescription, HclListItemTypeDetails, HclListItemDefaultValue, HclGeneralListItem } from '../../../../../src/components/HclListItem.tsx';
1010
import { ModuleUsage } from "../../../../../src/components/ModuleUsage";
1111

12-
<VersionBadge repoTitle="Amazon ECS" version="1.3.0" lastModifiedVersion="0.24.1"/>
12+
<VersionBadge repoTitle="Amazon ECS" version="1.4.2" lastModifiedVersion="0.24.1"/>
1313

1414
# ECS Service with Discovery
1515

16-
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-discovery" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
16+
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-discovery" className="link-button" title="View the source code for this module in GitHub.">View Source</a>
1717

1818
<a href="https://github.com/gruntwork-io/terraform-aws-ecs/releases/tag/v0.24.1" className="link-button" title="Release notes for only versions which impacted this module.">Release Notes</a>
1919

@@ -23,11 +23,11 @@ guide in [the release notes](https://github.com/gruntwork-io/terraform-aws-ecs/r
2323
<!-- ##DOCS-SOURCER-START
2424
{
2525
"originalSources": [
26-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-discovery/readme.md",
27-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-discovery/variables.tf",
28-
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.3.0/modules/ecs-service-with-discovery/outputs.tf"
26+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-discovery/readme.md",
27+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-discovery/variables.tf",
28+
"https://github.com/gruntwork-io/terraform-aws-ecs/tree/v1.4.2/modules/ecs-service-with-discovery/outputs.tf"
2929
],
3030
"sourcePlugin": "module-catalog-api",
31-
"hash": "d370a963ebf1d33a32785822152abe7b"
31+
"hash": "ee97a906ace168720b0b9fd27260a31b"
3232
}
3333
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)