Skip to content

Commit 48c273b

Browse files
committed
Use a simpler test module that doesn't require permissions
1 parent 4a6c5b3 commit 48c273b

File tree

1 file changed

+11
-5
lines changed
  • tests/workflows/test-early-eval/s3

1 file changed

+11
-5
lines changed

tests/workflows/test-early-eval/s3/main.tf

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,25 @@ variable "state_bucket" {
1414
type = string
1515
}
1616

17-
variable "acm_certificate_version" {
17+
variable "module_version" {
1818
type = string
19-
default = "4.3.0"
19+
default = "0.25.0"
2020
}
2121

2222
variable "passphrase" {
2323
type = string
2424
sensitive = true
2525
}
2626

27-
module "s3-bucket" {
28-
source = "terraform-aws-modules/s3-bucket/aws"
29-
version = var.acm_certificate_version
27+
module "label" {
28+
source = "cloudposse/label/null"
29+
version = var.module_version
30+
31+
name = "hello"
32+
}
33+
34+
resource "random_string" "my_String" {
35+
length = 10
3036
}
3137

3238
terraform {

0 commit comments

Comments
 (0)