Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: goreleaser/goreleaser-action@v7
with:
# renovate: datasource=github-releases depName=goreleaser/goreleaser
version: "v2.15.2"
version: "v2.15.4"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
100 changes: 70 additions & 30 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/opentofu/opentofu:minimal AS tofu

FROM alpine:3.23.3
FROM alpine:3.23.4

# Copy the tofu binary from the minimal image
COPY --from=tofu /usr/local/bin/tofu /usr/local/bin/tofu
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ func transitGatewayRouteTableAssociationItemMapper(query, scope string, awsItem
})
case types.TransitGatewayAttachmentResourceTypeVpnConcentrator,
types.TransitGatewayAttachmentResourceTypeConnect,
types.TransitGatewayAttachmentResourceTypeNetworkFunction:
types.TransitGatewayAttachmentResourceTypeNetworkFunction,
types.TransitGatewayAttachmentResourceTypeClientVpn:
// No Overmind adapter for these resource types; attachment link above is sufficient.
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ func transitGatewayRouteTablePropagationItemMapper(query, scope string, awsItem
})
case types.TransitGatewayAttachmentResourceTypeVpnConcentrator,
types.TransitGatewayAttachmentResourceTypeConnect,
types.TransitGatewayAttachmentResourceTypeNetworkFunction:
types.TransitGatewayAttachmentResourceTypeNetworkFunction,
types.TransitGatewayAttachmentResourceTypeClientVpn:
// No Overmind adapter for these resource types; attachment link above is sufficient.
}
}
Expand Down
3 changes: 2 additions & 1 deletion aws-source/adapters/ec2-transit-gateway-route.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ func transitGatewayRouteItemMapper(query, scope string, awsItem *transitGatewayR
})
case types.TransitGatewayAttachmentResourceTypeVpnConcentrator,
types.TransitGatewayAttachmentResourceTypeConnect,
types.TransitGatewayAttachmentResourceTypeNetworkFunction:
types.TransitGatewayAttachmentResourceTypeNetworkFunction,
types.TransitGatewayAttachmentResourceTypeClientVpn:
// No Overmind adapter for these; attachment link above is sufficient.
}
}
Expand Down
2 changes: 1 addition & 1 deletion aws-source/build/package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/go/pkg \
--mount=type=cache,target=/root/.cache/go-build \
GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -trimpath -ldflags="-s -w -X github.com/overmindtech/cli/go/tracing.version=${BUILD_VERSION} -X github.com/overmindtech/cli/go/tracing.commit=${BUILD_COMMIT}" -o source aws-source/main.go

FROM alpine:3.23.3
FROM alpine:3.23.4
WORKDIR /
COPY --from=builder /workspace/source .
USER 65534:65534
Expand Down
2 changes: 1 addition & 1 deletion aws-source/module/provider/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: goreleaser/goreleaser-action@v7
with:
# renovate: datasource=github-releases depName=goreleaser/goreleaser
version: "v2.15.2"
version: "v2.15.4"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading