{"id":23590801,"url":"https://github.com/utilitywarehouse/tf_kube_aws","last_synced_at":"2025-10-25T18:49:56.130Z","repository":{"id":23673165,"uuid":"99006976","full_name":"utilitywarehouse/tf_kube_aws","owner":"utilitywarehouse","description":"terraform modules for kubernetes on container linux","archived":false,"fork":false,"pushed_at":"2025-02-21T09:05:15.000Z","size":143,"stargazers_count":9,"open_issues_count":0,"forks_count":4,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-07-30T22:32:13.019Z","etag":null,"topics":["aws","infrastructure","kubernetes","terraform","uw-owner-system"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utilitywarehouse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2017-08-01T13:55:43.000Z","updated_at":"2025-02-21T09:05:14.000Z","dependencies_parsed_at":"2023-01-13T23:40:25.818Z","dependency_job_id":"61075c7e-ca03-439b-859a-96109bf5b9c0","html_url":"https://github.com/utilitywarehouse/tf_kube_aws","commit_stats":null,"previous_names":[],"tags_count":45,"template":false,"template_full_name":null,"purl":"pkg:github/utilitywarehouse/tf_kube_aws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilitywarehouse%2Ftf_kube_aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilitywarehouse%2Ftf_kube_aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilitywarehouse%2Ftf_kube_aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilitywarehouse%2Ftf_kube_aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utilitywarehouse","download_url":"https://codeload.github.com/utilitywarehouse/tf_kube_aws/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utilitywarehouse%2Ftf_kube_aws/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271462097,"owners_count":24763860,"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","status":"online","status_checked_at":"2025-08-21T02:00:08.990Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws","infrastructure","kubernetes","terraform","uw-owner-system"],"created_at":"2024-12-27T07:15:44.667Z","updated_at":"2025-10-25T18:49:56.029Z","avatar_url":"https://github.com/utilitywarehouse.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tf_kube_aws\n\nThis terraform module creates a kubernetes cluster in AWS. It assumes [ignition](https://coreos.com/ignition) userdata and it's designed to synergise well with [tf_kube_ignition](https://github.com/utilitywarehouse/tf_kube_ignition).\n\n## Input Variables\n\nThe input variables are documented in their description and it's best to refer to [variables.tf](variables.tf).\n\n## Ouputs\n\n- `etcd_ip_list` - a list with the IP addresses of the created etcd nodes\n- `cfssl_ip` - the IP address of the cfssl server that manages certificates\n- `master_address` - the endpoint on which the kubernetes api is made available\n- `etcd_security_group_id` - the id of the security group to which kubernetes etcd nodes belong\n- `master_security_group_id` - the id of the security group to which kubernetes master nodes belong\n- `worker_security_group_id` - the id of the security group to which kubernetes worker nodes belong\n\n## Usage\n\nBelow is an example of how you might use this terraform module:\n\n```hcl\nmodule \"aws_cluster\" {\n  source = \"github.com/utilitywarehouse/tf_kube_aws\"\n\n  region                           = \"eu-west-1\"\n  cluster_name                     = \"example-kube\"\n  cluster_subdomain                = \"k8s\"\n  vpc_id                           = \"${aws_vpc.example.id}\"\n  containerlinux_ami_id            = \"ami-xxxxxxxxx\"\n  route53_zone_id                  = \"${aws_route53_zone.example.id}\"\n  route53_inaddr_arpa_zone_id      = \"${aws_route53_zone.example-reverse.id}\"\n  control_plane_private_subnet_ids = \"${aws_subnet.control_plane_private.*.id}\"\n  worker_node_private_subnet_ids   = \"${aws_subnet.workers_private.*.id}\"\n  public_subnet_ids                = \"${aws_subnet.public.*.id}\"\n  key_name                         = \"${aws_key_pair.example.key_name}\"\n  ssh_security_group_ids           = [\"${aws_security_group.ssh.id}\"]\n  cfssl_user_data                  = \"${module.ignition.cfssl}\"\n  etcd_user_data                   = \"${module.ignition.etcd}\"\n  master_user_data                 = \"${module.ignition.master}\"\n  worker_user_data                 = \"${module.ignition.worker}\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilitywarehouse%2Ftf_kube_aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futilitywarehouse%2Ftf_kube_aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futilitywarehouse%2Ftf_kube_aws/lists"}