You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Initial work
* Adding additional tag generation logic
* Adding additional tag merge to missed resources
* Adding example to action description
* Removing the merge(X+var.additional_tags), additional tags merged to default tags in provider
* removing sg postfix
* updating readme with `additional_tags` attribute
Co-authored-by: LeoDiazL <[email protected]>
@@ -77,6 +78,7 @@ The following inputs can be used as `step.with` keys
77
78
|`stack_destroy`| String | Set to `true` to destroy the stack. Default is `""` - Will delete the tf_state_bucket after destroy. |
78
79
|`aws_resource_identifier`| String | Set to override the AWS resource identifier for the deployment. Defaults to `${org}-{repo}-{branch}`. Use with destroy to destroy specific resources. |
79
80
|`app_directory`| String | Relative path for the directory of the app (i.e. where `Dockerfile` and `docker-compose.yaml` files are located). This is the directory that is copied to the EC2 instance. Default is the root of the repo. |
81
+
|`additional_tags`| JSON | Add additional tags to the terraform [default tags](https://www.hashicorp.com/blog/default-tags-in-the-terraform-aws-provider), any tags put here will be added to all provisioned resources.|
Copy file name to clipboardExpand all lines: action.yaml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,8 @@ inputs:
50
50
description: 'Define the sub-domain part of the URL. Defaults to `${org}-${repo}-{branch}`'
51
51
app_directory:
52
52
description: 'Relative path for the directory of the app (i.e. where `Dockerfile` and `docker-compose.yaml` files are located). This is the directory that is copied to the EC2 instance. Default is the root of the repo.'
53
+
additional_tags:
54
+
description: 'A list of additional tags that will be included on created resources. Example: `{"key1": "value1", "key2": "value2"}`'
0 commit comments