Skip to content

Commit 28bb533

Browse files
Fix terratest - bucket length (#1)
Co-authored-by: Aarti Joshi <aarti.joshi@nttdata.com>
1 parent 45330a8 commit 28bb533

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,6 @@ azure_env.sh
6363

6464
# VS Code
6565
.vscode/
66+
67+
# Ignore json files created by terratest
68+
examples/complete/output.json

examples/complete/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ provider "random" {}
2626

2727
| Name | Version |
2828
|------|---------|
29-
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.0 |
29+
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.2 |
3030

3131
## Modules
3232

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// limitations under the License.
1212

1313
resource "random_string" "random" {
14-
length = 16
14+
length = 10
1515
special = false
1616
upper = false
1717
}

examples/complete/test.tfvars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ source_s3_bucket_prefix = "tf-aws-module_primitive-codepipeline-test-bucket"
44
pipeline_type = "V2"
55
execution_mode = "PARALLEL"
66

7+
78
stages = [
89
{
910
stage_name = "Source"

0 commit comments

Comments
 (0)