Skip to content

Commit

Permalink
Bump chainguard-dev/common/infra from 0.6.109 to 0.6.110 in /modules/…
Browse files Browse the repository at this point in the history
…app in the all group (#666)

Bumps the all group in /modules/app with 1 update:
[chainguard-dev/common/infra](https://github.com/chainguard-dev/terraform-infra-common).

Updates `chainguard-dev/common/infra` from 0.6.109 to 0.6.110
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/chainguard-dev/terraform-infra-common/releases">chainguard-dev/common/infra's
releases</a>.</em></p>
<blockquote>
<h2>v0.6.110</h2>
<h2>What's Changed</h2>
<ul>
<li>make additional webhook secrets optional by <a
href="https://github.com/k4leung4"><code>@​k4leung4</code></a> in <a
href="https://redirect.github.com/chainguard-dev/terraform-infra-common/pull/666">chainguard-dev/terraform-infra-common#666</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/chainguard-dev/terraform-infra-common/compare/v0.6.109...v0.6.110">https://github.com/chainguard-dev/terraform-infra-common/compare/v0.6.109...v0.6.110</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/chainguard-dev/terraform-infra-common/commit/76701443387ff89e88fea04e1ee0a2f7ee990c1a"><code>7670144</code></a>
make additional webhook secrets optional (<a
href="https://redirect.github.com/chainguard-dev/terraform-infra-common/issues/666">#666</a>)</li>
<li>See full diff in <a
href="https://github.com/chainguard-dev/terraform-infra-common/compare/v0.6.109...v0.6.110">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=chainguard-dev/common/infra&package-manager=terraform&previous-version=0.6.109&new-version=0.6.110)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 13, 2024
1 parent 21e3b62 commit cb28fc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module "sts-emits-events" {
for_each = var.regions

source = "chainguard-dev/common/infra//modules/authorize-private-service"
version = "0.6.109"
version = "0.6.110"

project_id = var.project_id
region = each.key
Expand All @@ -71,7 +71,7 @@ module "sts-emits-events" {

module "this" {
source = "chainguard-dev/common/infra//modules/regional-service"
version = "0.6.109"
version = "0.6.110"

project_id = var.project_id
name = var.name
Expand Down
4 changes: 2 additions & 2 deletions modules/app/webhook.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "random_password" "webhook-secret" {

module "webhook-secret" {
source = "chainguard-dev/common/infra//modules/configmap"
version = "0.6.109"
version = "0.6.110"

project_id = var.project_id
name = "${var.name}-webhook-secret"
Expand All @@ -20,7 +20,7 @@ module "webhook-secret" {

module "webhook" {
source = "chainguard-dev/common/infra//modules/regional-service"
version = "0.6.109"
version = "0.6.110"

project_id = var.project_id
name = "${var.name}-webhook"
Expand Down

0 comments on commit cb28fc6

Please sign in to comment.