-
Notifications
You must be signed in to change notification settings - Fork 0
⬆️ tf: Bump the terraform group across 2 directories with 2 updates #10
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
Conversation
Bumps the terraform group with 1 update in the / directory: [bendoerr-terraform-modules/label/null](https://github.com/bendoerr-terraform-modules/terraform-null-label). Bumps the terraform group with 1 update in the /examples/simple directory: [bendoerr-terraform-modules/context/null](https://github.com/bendoerr-terraform-modules/terraform-null-context). Updates `bendoerr-terraform-modules/label/null` from 0.4.2 to 0.5.0 - [Release notes](https://github.com/bendoerr-terraform-modules/terraform-null-label/releases) - [Commits](bendoerr-terraform-modules/terraform-null-label@v0.4.2...v0.5.0) Updates `bendoerr-terraform-modules/context/null` from 0.5.0 to 0.5.1 - [Release notes](https://github.com/bendoerr-terraform-modules/terraform-null-context/releases) - [Commits](bendoerr-terraform-modules/terraform-null-context@v0.5.0...v0.5.1) --- updated-dependencies: - dependency-name: bendoerr-terraform-modules/label/null dependency-version: 0.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: terraform - dependency-name: bendoerr-terraform-modules/context/null dependency-version: 0.5.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: terraform ... Signed-off-by: dependabot[bot] <support@github.com>
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
💰 Infracost reportMonthly estimate generatedThis comment will be updated when code changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 [Trivy] <AVD-AWS-0066> reported by reviewdog 🐶
Artifact: main.tf
Type: terraform
Vulnerability AVD-AWS-0066
Severity: LOW
Message: Function does not have tracing enabled.
Link: AVD-AWS-0066
Lines 8 to 48 in 5997437
resource "aws_lambda_function" "this" { | |
function_name = module.label.id | |
description = var.description | |
tags = module.label.tags | |
filename = var.filename | |
source_code_hash = var.source_code_hash != null ? var.source_code_hash : filebase64sha256(var.filename) | |
runtime = var.runtime | |
memory_size = var.memory_size | |
architectures = var.architectures | |
role = aws_iam_role.this.arn | |
handler = var.handler | |
timeout = var.timeout | |
publish = var.publish | |
layers = var.layers | |
kms_key_arn = var.env_kms_key_arn | |
dynamic "environment" { | |
for_each = length(keys(var.environment_variables)) == 0 ? [] : [true] | |
content { | |
variables = var.environment_variables | |
} | |
} | |
dynamic "tracing_config" { | |
for_each = var.enable_tracing ? [true] : [] | |
content { | |
mode = var.tracing_mode | |
} | |
} | |
dynamic "vpc_config" { | |
for_each = var.vpc_subnet_ids != null && var.vpc_security_group_ids != null ? [true] : [] | |
content { | |
security_group_ids = var.vpc_security_group_ids | |
subnet_ids = var.vpc_subnet_ids | |
} | |
} | |
} |
Bumps the terraform group with 1 update in the / directory: bendoerr-terraform-modules/label/null.
Bumps the terraform group with 1 update in the /examples/simple directory: bendoerr-terraform-modules/context/null.
Updates
bendoerr-terraform-modules/label/null
from 0.4.2 to 0.5.0Release notes
Sourced from bendoerr-terraform-modules/label/null's releases.
Commits
4e5a7cc
👷 ci: Adds labeler & release workflows, updates action versions (#103)aff00f3
🔨 chore: Updates/Modernizes codeql, lint & test workflows660e4c7
⬆️ gha: Bump the github-actions group across 1 directory with 10 updates (#100)d174ba0
⬆️ test: Bump github.com/gruntwork-io/terratest (#87)03f25cc
⬆️ gha: Bump the github-actions group with 2 updates (#86)65ba449
⬆️ gha: Bump github/codeql-action in the github-actions group (#85)947989e
⬆️ gha: Bump github/codeql-action in the github-actions group (#84)e16d0ba
⬆️ gha: Bump the github-actions group with 4 updates (#83)4284a45
⬆️ gha: Bump actions/upload-artifact in the github-actions group (#82)903f5ed
⬆️ gha: Bump the github-actions group with 2 updates (#81)Updates
bendoerr-terraform-modules/context/null
from 0.5.0 to 0.5.1Release notes
Sourced from bendoerr-terraform-modules/context/null's releases.
Commits
b07b666
👷 ci: Modernize codeql.yml & adds github actions (#130)2ff79be
⬆️ gha: Bump the github-actions group across 1 directory with 15 updates (#129)11aebfa
💚 fix: Updates golangci-lint config and terratest GHA (#128)ea6ec59
⬆️ gha: Bump cloudposse/github-action-terratest (#104)d53f76a
🔧 chore: Updates golangci linter deprecations (#115)2d9249d
⬆️ gha: Bump the github-actions group across 1 directory with 3 updates (#102)cf0a89b
⬆️ test: Bump github.com/gruntwork-io/terratest (#101)4de3f4f
⬆️ gha: Bump github/codeql-action in the github-actions group (#99)You can trigger a rebase of this PR by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions