Skip to content

Commit

Permalink
Migrate new test account (#150)
Browse files Browse the repository at this point in the history
* chore: Migrate new test account

* Fix bats

* Fix bats

---------

Co-authored-by: Igor Rodionov <[email protected]>
  • Loading branch information
osterman and goruha authored Sep 11, 2024
1 parent c06f95b commit ce651eb
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/chatops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ permissions:
pull-requests: write
id-token: write
contents: write
statuses: write

jobs:
terraform-module:
test:
uses: cloudposse/.github/.github/workflows/shared-terraform-chatops.yml@main
secrets:
github_access_token: ${{ secrets.REPO_ACCESS_TOKEN }}
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/terratest') }}
secrets: inherit
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ on:
types:
- published

permissions: {}
permissions:
id-token: write
contents: write
pull-requests: write

jobs:
terraform-module:
Expand Down
9 changes: 6 additions & 3 deletions examples/complete/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
value = module.subnets.public_subnet_cidrs
description = "List of public subnet CIDRs"
}

output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
value = module.subnets.private_subnet_cidrs
description = "List of private subnet CIDRs"
}

output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}

output "efs_arn" {
Expand Down
3 changes: 2 additions & 1 deletion examples/complete/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
variable "region" {
type = string
type = string
description = "AWS region"
}

variable "availability_zones" {
Expand Down

0 comments on commit ce651eb

Please sign in to comment.