Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate new test account #150

Merged
merged 3 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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