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

DT-436 adding tags to aws resources #25

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft

Conversation

christopher-comet
Copy link

@christopher-comet christopher-comet commented Feb 10, 2025

https://comet-ml.atlassian.net/browse/DT-436

This also includes edits to make the tfvars ready to go with defaults and updates the redis version.

darenjacobs
darenjacobs previously approved these changes Feb 10, 2025
Copy link
Contributor

@darenjacobs darenjacobs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@darenjacobs darenjacobs self-requested a review February 19, 2025 12:37
@christopher-comet
Copy link
Author

Ready for review. @darenjacobs @liyaka

liyaka
liyaka previously requested changes Feb 22, 2025
@christopher-comet
Copy link
Author

There are a couple of modules wherein the resource explicitly sets tags.
eg. in terraform-aws-comet/modules/comet_s3/main.tf

resource "aws_s3_bucket" "comet_airflow_bucket" {
  count = var.enable_mpm_infra ? 1 : 0

  bucket = "comet-airflow-${local.suffix}"

  force_destroy = var.s3_force_destroy

  tags = {
    Name = "comet-airflow-${local.suffix}"
  }
}

In this situation the S3 bucket will only get the Name tag, and it will NOT inherit common_tags automatically because the tags block inside aws_s3_bucket is explicitly defined, and default_tags from providers.tf does not override manually set tags.

Therefore for these cases we need to merge the common_tags.

@christopher-comet christopher-comet marked this pull request as draft March 6, 2025 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants