{"id":15516211,"url":"https://github.com/dippynark/terraform-provider-awstag","last_synced_at":"2025-03-17T02:15:49.121Z","repository":{"id":105104974,"uuid":"119551627","full_name":"dippynark/terraform-provider-awstag","owner":"dippynark","description":"A simple terraform provider for creating AWS tag resources","archived":false,"fork":false,"pushed_at":"2018-01-30T16:19:45.000Z","size":9650,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-23T12:11:35.305Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dippynark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-30T15:02:17.000Z","updated_at":"2018-01-30T15:02:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc7801cb-7378-4b63-ba88-e19e2d398325","html_url":"https://github.com/dippynark/terraform-provider-awstag","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"d4f0709e4a34bc18acadfc1634c5263ed336f7de"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dippynark%2Fterraform-provider-awstag","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dippynark%2Fterraform-provider-awstag/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dippynark%2Fterraform-provider-awstag/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dippynark%2Fterraform-provider-awstag/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dippynark","download_url":"https://codeload.github.com/dippynark/terraform-provider-awstag/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243960667,"owners_count":20375105,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-02T10:06:06.793Z","updated_at":"2025-03-17T02:15:49.092Z","avatar_url":"https://github.com/dippynark.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform AWSTag Provider\n\nThis is a simple provider which adds an AWS EC2 tag resource. This resource allows us to do the following:\n- Modify tags for EC2 resources created in an external Terraform environment\n- Create tags with dynamic keys (tag keys currently have to be specified as static strings)\n\nMore details about the need for this resource can be found in [this](https://github.com/terraform-providers/terraform-provider-aws/issues/3143) issue.\n\n## Example\n\n```\nprovider \"awstag\" {\n  region = \"eu-west-1\"\n}\n\nprovider \"aws\" {\n  region = \"eu-west-1\"\n}\n\nresource \"aws_subnet\" \"example\" {\n  vpc_id                  = \"vpc-12345678\"\n  cidr_block              = \"192.168.1.0/24\"  \n\n  lifecycle {\n    ignore_changes = [\"tags\"]\n  }\n\n  tags {\n    Name = \"Example\"\n  }\n}\n\nvariable \"tag_key\" {\n  default = \"my_tag_key\"\n}\n\nvariable \"tag_value\" {\n  default = \"my_tag_value\"\n}\n\nresource \"awstag_ec2_tag\" \"my_tag\" {\n  ec2_id = \"${aws_subnet.example.id}\"\n  key = \"${var.tag_key}\"\n  value = \"${var.tag_value}\"\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdippynark%2Fterraform-provider-awstag","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdippynark%2Fterraform-provider-awstag","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdippynark%2Fterraform-provider-awstag/lists"}