Skip to content

Commit

Permalink
feat: Bump Vector version, terraform modules versions (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirantd authored Apr 8, 2024
1 parent 0584355 commit 745eec5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.88.0
rev: v1.88.4
hooks:
- id: terraform_fmt
- id: terraform_validate
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ In the above diagram, you can see the components and their relations.

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.38.0 |
| <a name="provider_helm"></a> [helm](#provider\_helm) | 2.12.1 |
| <a name="provider_utils"></a> [utils](#provider\_utils) | 1.18.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.44.0 |
| <a name="provider_helm"></a> [helm](#provider\_helm) | 2.13.0 |
| <a name="provider_utils"></a> [utils](#provider\_utils) | 1.19.2 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_vector_agent_role"></a> [vector\_agent\_role](#module\_vector\_agent\_role) | terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc | v5.34.0 |
| <a name="module_vector_aggregator_role"></a> [vector\_aggregator\_role](#module\_vector\_aggregator\_role) | terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc | v5.34.0 |
| <a name="module_vector_agent_role"></a> [vector\_agent\_role](#module\_vector\_agent\_role) | terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc | v5.38.0 |
| <a name="module_vector_aggregator_role"></a> [vector\_aggregator\_role](#module\_vector\_aggregator\_role) | terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc | v5.38.0 |
| <a name="module_vector_s3_bucket"></a> [vector\_s3\_bucket](#module\_vector\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | 4.1.0 |
| <a name="module_vector_sqs"></a> [vector\_sqs](#module\_vector\_sqs) | terraform-aws-modules/sqs/aws | 4.1.0 |

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ locals {
default_helm_chart_config = {
chart = "vector"
repository = "https://helm.vector.dev"
version = "0.31.0"
version = "0.32.0"
namespace = "vector"
create_namespace = true
}
Expand Down
2 changes: 1 addition & 1 deletion vector_agent.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ resource "aws_iam_policy" "vector_agent" {

module "vector_agent_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "v5.34.0"
version = "v5.38.0"
create_role = true
allow_self_assume_role = false
role_description = "Vector Agent IRSA"
Expand Down
2 changes: 1 addition & 1 deletion vector_aggregator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ resource "aws_iam_policy" "vector_aggregator" {

module "vector_aggregator_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "v5.34.0"
version = "v5.38.0"
create_role = true
allow_self_assume_role = false
role_description = "Vector Aggregator IRSA"
Expand Down

0 comments on commit 745eec5

Please sign in to comment.