This module is responsible for managing the tags we use at SourceFuse when creating resources in AWS.
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"
}
}
Name | Version |
---|---|
terraform | >= 1.4, < 2.0.0 |
No providers.
No modules.
No resources.
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 |
Name | Description |
---|---|
extra_tags | n/a |
tags | n/a |
No requirements.
No providers.
No modules.
No resources.
Name | Description | Type | Default | Required |
---|---|---|---|---|
environment | The environment the resource will be created in. | any |
n/a | yes |
extra_tags | Additional tags to add to your resources. | map(string) |
{} |
no |
project | The name of the project being worked on. | any |
n/a | yes |
Name | Description |
---|---|
extra_tags | n/a |
tags | n/a |
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