Skip to content

Module Banner

terraform-aws-arc-tags

Module: sourcefuse/arc-tags/aws

Registry: https://registry.terraform.io/modules/sourcefuse/arc-tags/aws

Category: Utility / Tagging

Source: https://github.com/sourcefuse/terraform-aws-arc-tags

Latest Release Last Updated Terraform GitHub Actions

Quality gate

Overview

Generates a standardized map of AWS resource tags from environment, project, and extra tag inputs for consistent tagging across all ARC modules.

What It Does

  • Standardized tag map output
  • Environment and project required tags
  • Extra tags for custom key-value pairs
  • Zero AWS resources created — output only
  • Used as a dependency by all other ARC modules

Quickstart

module "terraform-aws-arc-tags" {
  source      = "sourcefuse/arc-tags/aws"
  # version     = "x.x.x"  # we recommend pinning to a specific version
  environment = "dev"
  project     = "Example"

  extra_tags = {
    RepoName = "terraform-aws-arc-ecs"
    Example  = "true"
  }
}

Required Inputs

Name Type Description
environment string Deployment environment tag value
project string Project name tag value
## Key Outputs
Name Description
tags Map of standardized tags to apply to resources
## Full Variable & Output Reference

The complete inputs/outputs reference is auto-generated below.

Requirements

Name Version
terraform >= 1.4, < 2.0.0

Providers

No providers.

Modules

No modules.

Resources

No resources.

Inputs

Name Description Type Default Required
environment The environment the resource will be created in. string n/a yes
extra_tags Additional tags to add to your resources. map(string) {} no
project The name of the project being worked on. string n/a yes

Outputs

Name Description
extra_tags n/a
tags n/a

Git commits

while Contributing or doing git commit please specify the breaking change in your commit message whether its major,minor or patch

For Example

git commit -m "your commit message #major"

By specifying this , it will bump the version and if you dont specify this in your commit message then by default it will consider patch and will bump that accordingly

Contributing

See CONTRIBUTING.md for commit conventions and development setup.

Authors

This project is authored by: - SourceFuse ARC Team