Skip to content

Commit be0295f

Browse files
committed
CCM-10294: add versions
1 parent 28e5fdc commit be0295f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/actions/normalize-branch-name/action.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ runs:
3333
# Example: 0000004f106adc56fc0460853351c314b670d -
3434
LONG_SANDBOX_NAME="$TICKET_NUMBER""$HASH"
3535
36-
MAX_SANDBOX_LENGTH=8
37-
3836
# Example: 0000004f
39-
SANDBOX_NAME=${LONG_SANDBOX_NAME:0:MAX_SANDBOX_LENGTH}
37+
SANDBOX_NAME=${LONG_SANDBOX_NAME:0:8}
4038
echo "$SANDBOX_NAME"
4139
echo "normalized_branch_name=$SANDBOX_NAME" >> $GITHUB_OUTPUT

infrastructure/terraform/components/sandbox/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
## Requirements
66

7-
No requirements.
7+
| Name | Version |
8+
|------|---------|
9+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9.0 |
10+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.50 |
811
## Inputs
912

1013
| Name | Description | Type | Default | Required |
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
terraform {
2+
required_providers {
3+
aws = {
4+
source = "hashicorp/aws"
5+
version = "~> 5.50"
6+
}
7+
}
8+
9+
required_version = ">= 1.9.0"
10+
}

0 commit comments

Comments
 (0)