{"id":20136054,"url":"https://github.com/zkfmapf123/terraform-cloud-poc","last_synced_at":"2026-02-14T08:01:27.973Z","repository":{"id":230040442,"uuid":"778272126","full_name":"zkfmapf123/terraform-cloud-poc","owner":"zkfmapf123","description":"terraform cloud poc","archived":false,"fork":false,"pushed_at":"2024-03-27T14:00:17.000Z","size":1754,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-06T15:03:05.354Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","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/zkfmapf123.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}},"created_at":"2024-03-27T12:11:39.000Z","updated_at":"2024-03-27T12:35:46.000Z","dependencies_parsed_at":"2024-03-27T14:47:11.838Z","dependency_job_id":"5a0cabae-4b9a-4a5e-8101-f14c0043105d","html_url":"https://github.com/zkfmapf123/terraform-cloud-poc","commit_stats":null,"previous_names":["zkfmapf123/terraform-cloud-poc"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zkfmapf123/terraform-cloud-poc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkfmapf123%2Fterraform-cloud-poc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkfmapf123%2Fterraform-cloud-poc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkfmapf123%2Fterraform-cloud-poc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkfmapf123%2Fterraform-cloud-poc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zkfmapf123","download_url":"https://codeload.github.com/zkfmapf123/terraform-cloud-poc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zkfmapf123%2Fterraform-cloud-poc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29439820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T07:24:13.446Z","status":"ssl_error","status_checked_at":"2026-02-14T07:23:58.969Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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-11-13T21:17:33.659Z","updated_at":"2026-02-14T08:01:27.958Z","avatar_url":"https://github.com/zkfmapf123.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Cloud PoC\n\n## Props\n\n- Terraform State\n- Local이 아닌 Apply 해서 반영을 진행해줌\n- Local에서는 코드만 수정하면 됨...\n\n## ...\n\n1. Git Repository 구성 \u0026 Repository Push\n\n2. Create a workspace in Terraform Cloud\n\n![1](./public/1.png)\n![2](./public/2.png)\n![3](./public/3.png)\n\n3. terraform login\n\n```\nterraform login\n.. 구성 후\nterraform init\n```\n\n```terraform\nterraform {\n  required_providers {\n\n    aws = {\n      source  = \"hashicorp/aws\"\n      version = \"4.48.0\"\n    }\n  }\n\n  cloud {\n    hostname     = \"app.terraform.io\" ## Fixed\n    organization = \"dk-terraform-poc\" ## Organization Name\n\n    ## Default Workspace\n    workspaces {\n      tags = [\"dev\"]\n      name = \"terraform-dev\"\n    }\n  }\n}\n```\n\n4. AWS Key 등록 (이건 약간 허들...)\n\n- AWS Resource를 바꾸는 거다 보니까... AccessKey, SecretKey가 필요하다\n\n![4](./public/4.png)\n![5](./public/5.png)\n![6](./public/6.png)\n\n5. 최초로 한번만 apply 해야함 (이것도 좀...)\n\n```\nterrform apply\n```\n\n6. Git에 Push 하면 Terraform cloud에 반영되게 하기\n\n- Workspace \u003e Setting \u003e Version Control \u003e Version Control Workflow\n\n![8](./public/8.png)\n![10](./public/10.png)\n\n## Issue\n\n```\n  Not Found Profile...\n```\n\n- provider를 설정할때 원래 accessKey, secretKey 옵션이 존재하는데\n- 이걸 variable set에서 설정해줘야 함...\n\n![7](./public/7.png)\n\n```\n  Setting Version Control 해서 Repository 찾을때 Repository가 안나옴 (100개 이상일때...)\n```\n\n- 직접 입력해야함 org/repository-name\n![9](./public/9.png)\n\n\n## Reference \n\n- \u003ca href=\"https://www.toptal.com/developers/gitignore/\"\u003e gitignore.io \u003c/a\u003e\n- \u003ca href=\"https://www.hashicorp.com/products/terraform\"\u003e Terraform Cloud \u003c/a\u003e\n- \u003ca href=\"https://developer.hashicorp.com/terraform/tutorials/cloud/migrate-remote-s3-backend-tfc\"\u003e migrate s3 to terraform cloud \u003c/a\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzkfmapf123%2Fterraform-cloud-poc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzkfmapf123%2Fterraform-cloud-poc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzkfmapf123%2Fterraform-cloud-poc/lists"}