Skip to content

Commit

Permalink
feat: prepare addon (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaygridley authored Nov 14, 2024
1 parent fb54719 commit d037978
Show file tree
Hide file tree
Showing 21 changed files with 32 additions and 1,136 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# AWS EKS Universal Addon Terraform module
# AWS EKS AWS Service Quota Exporter Terraform module

A Terraform module to deploy the universal addon on Amazon EKS cluster.
A Terraform module to deploy the [aws-service-quota-exporter](https://github.com/lablabs/aws-service-quotas-exporter) on Amazon EKS cluster.

[![Terraform validate](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/validate.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/validate.yaml)
[![pre-commit](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/pre-commit.yaml)
[![Terraform validate](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/validate.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/validate.yaml)
[![pre-commit](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/pre-commit.yaml)

---

Expand Down Expand Up @@ -50,7 +50,7 @@ See [basic example](examples/basic) for further information.
| Name | Source | Version |
|------|--------|---------|
| <a name="module_addon"></a> [addon](#module\_addon) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon | v0.0.6 |
| <a name="module_addon-irsa"></a> [addon-irsa](#module\_addon-irsa) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa | v0.0.6 |
| <a name="module_addon-irsa"></a> [addon-irsa](#module\_addon-irsa) | git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa | v0.0.8 |
## Resources

| Name | Type |
Expand Down Expand Up @@ -84,6 +84,7 @@ See [basic example](examples/basic) for further information.
| <a name="input_cluster_identity_oidc_issuer"></a> [cluster\_identity\_oidc\_issuer](#input\_cluster\_identity\_oidc\_issuer) | The OIDC Identity issuer for the cluster (required). | `string` |
| <a name="input_cluster_identity_oidc_issuer_arn"></a> [cluster\_identity\_oidc\_issuer\_arn](#input\_cluster\_identity\_oidc\_issuer\_arn) | The OIDC Identity issuer ARN for the cluster that can be used to associate IAM roles with a Service Account (required). | `string` |
| <a name="input_enabled"></a> [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources. | `bool` |
| <a name="input_exporter_config"></a> [exporter\_config](#input\_exporter\_config) | The configuration for the exporter, see https://github.com/lablabs/aws-service-quotas-exporter/blob/main/config/example.yaml | `any` |
| <a name="input_helm_atomic"></a> [helm\_atomic](#input\_helm\_atomic) | If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to `false`. | `bool` |
| <a name="input_helm_chart_name"></a> [helm\_chart\_name](#input\_helm\_chart\_name) | Helm chart name to be installed. Defaults to `local.addon.name` (required). | `string` |
| <a name="input_helm_chart_version"></a> [helm\_chart\_version](#input\_helm\_chart\_version) | Version of the Helm chart. Defaults to `local.addon.helm_chart_version` (required). | `string` |
Expand Down
2 changes: 1 addition & 1 deletion addon-irsa.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module "addon-irsa" {
for_each = local.addon_irsa

source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.6"
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.8"

enabled = var.enabled

Expand Down
34 changes: 19 additions & 15 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,30 +1,34 @@
/**
* # AWS EKS Universal Addon Terraform module
* # AWS EKS AWS Service Quota Exporter Terraform module
*
* A Terraform module to deploy the universal addon on Amazon EKS cluster.
* A Terraform module to deploy the [aws-service-quota-exporter](https://github.com/lablabs/aws-service-quotas-exporter) on Amazon EKS cluster.
*
* [![Terraform validate](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/validate.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/validate.yaml)
* [![pre-commit](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-universal-addon/actions/workflows/pre-commit.yaml)
* [![Terraform validate](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/validate.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/validate.yaml)
* [![pre-commit](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/pre-commit.yaml/badge.svg)](https://github.com/lablabs/terraform-aws-eks-aws-service-quota-exporter/actions/workflows/pre-commit.yaml)
*/
# FIXME config: update addon docs above
locals {
# FIXME config: add addon configuration here
addon = {
name = "universal-addon"
name = "aws-service-quotas-exporter"

helm_chart_name = "raw"
helm_chart_version = "0.1.0"
helm_repo_url = "https://lablabs.github.io"
helm_chart_name = "aws-service-quotas-exporter"
helm_chart_version = "0.0.3"
helm_repo_url = "ghcr.io/lablabs/aws-service-quotas-exporter"
}

# FIXME config: add addon IRSA configuration here or remove if not needed
addon_irsa = {
(local.addon.name) = {
# FIXME config: add default IRSA overrides here or leave empty if not needed, but make sure to keep at least one key
}
(local.addon.name) = {}
}

addon_values = yamlencode({
# FIXME config: add default values here
serviceAccount = {
create = var.service_account_create != null ? var.service_account_create : true
name = var.service_account_name != null ? var.service_account_name : local.addon.name
annotations = module.addon-irsa[local.addon.name].irsa_role_enabled ? {
"eks.amazonaws.com/role-arn" = module.addon-irsa[local.addon.name].iam_role_attributes.arn
} : tomap({})
}
exporter = {
config = var.exporter_config
}
})
}
27 changes: 0 additions & 27 deletions modules/addon-irsa/.terraform.lock.hcl

This file was deleted.

75 changes: 0 additions & 75 deletions modules/addon-irsa/iam.tf

This file was deleted.

9 changes: 0 additions & 9 deletions modules/addon-irsa/outputs.tf

This file was deleted.

115 changes: 0 additions & 115 deletions modules/addon-irsa/variables.tf

This file was deleted.

10 changes: 0 additions & 10 deletions modules/addon-irsa/versions.tf

This file was deleted.

Loading

0 comments on commit d037978

Please sign in to comment.