diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d61498..6891eb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,3 +5,14 @@ - **repo**: add pre-commit and commitizen repo features ## 1.0.1 (2023-11-01) + +# CHANGELOG +* 1.0.3 -- 2024-07-30 + - updated image module + - bumped version +* 1.0.2 -- 2024-07-22 + - updated istio chart/app to 1.22.3 + - add force_delete and lifecycle policies to copy_images + - updated version.tf to 1.0.2 + - included module.images in depends on helm charts + - created changelog diff --git a/README.md b/README.md index ec30335..83781a8 100644 --- a/README.md +++ b/README.md @@ -21,65 +21,25 @@ have a istio proxy configured, prevent communication with that pod.) configuration of which identities are allowed to call services, and which services are allowed to interact with other services. -# CHANGELOG -* 1.0.3 -- 2024-07-30 - - updated image module - - bumped version -* 1.0.2 -- 2024-07-22 - - updated istio chart/app to 1.22.3 - - add force_delete and lifecycle policies to copy_images - - updated version.tf to 1.0.2 - - included module.images in depends on helm charts - - created changelog -## Requirements - -| Name | Version | -|------|---------| -| [terraform](#requirement\_terraform) | >= 0.13 | -| [aws](#requirement\_aws) | >= 5.14.0 | -| [helm](#requirement\_helm) | >= 2.11.0 | -| [kubernetes](#requirement\_kubernetes) | >= 2.23.0 | -| [null](#requirement\_null) | >= 3.2.1 | - -## Inputs - -| Name | Description | Type | Default | Required | -|------|-------------|------|---------|:--------:| -| [cluster\_name](#input\_cluster\_name) | The name of the cluster into which istio will be installed. | `string` | n/a | yes | -| [enable\_egress\_gateway](#input\_enable\_egress\_gateway) | Enable Istio to control outbound traffic from the cluster. | `bool` | `true` | no | -| [enable\_telemetry](#input\_enable\_telemetry) | Enable Istio's stracing, monitoring, and logging features. | `string` | `"true"` | no | -| [extra\_listener\_ports](#input\_extra\_listener\_ports) | A list of additional ports that the ingress load balancer should listen to, 9094 for kafka as an example. |
list(object({
name = string
port = string
}))
| `[]` | no | -| [istio\_chart\_version](#input\_istio\_chart\_version) | The version of istio to install into the cluster. | `string` | `"1.18.2"` | no | -| [istio\_version](#input\_istio\_version) | The version of istio to install into the cluster. | `string` | `"1.18.2"` | no | -| [namespace](#input\_namespace) | The namespace to install the istio components. Defaults to 'istio-system' | `string` | `"istio-system"` | no | -| [profile](#input\_profile) | AWS\_PROFILE to use to apply the terraform script. | `string` | `""` | no | -| [region](#input\_region) | The region in which the cluster is running. | `string` | n/a | yes | -| [tags](#input\_tags) | Tags to be added to the load balancer in AWS. | `map(string)` | `{}` | no | +A successful Apply will yield: +Apply complete! Resources: 11 added, 0 changed, 0 destroyed. -## Outputs +Outputs: -| Name | Description | -|------|-------------| -| [module\_name](#output\_module\_name) | The name of this module. | -| [module\_version](#output\_module\_version) | The version of this module. | +module_name = "tfmod-istio" +module_version = "1.0.3" -## Resources +real 1m24.584s +user 0m40.156s +sys 0m5.320s -| Name | Type | -|------|------| -| [helm_release.base](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | resource | -| [helm_release.egress](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | resource | -| [helm_release.ingress](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | resource | -| [helm_release.istiod](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | resource | -| [kubernetes_namespace.ns](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace) | resource | -| [kubernetes_service.apiserver](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/data-sources/service) | data source | +A successful Destroy will yield: +Destroy complete! Resources: 11 destroyed. -## Modules - -| Name | Source | Version | -|------|--------|---------| -| [images](#module\_images) | git@github.e.it.census.gov:terraform-modules/aws-ecr-copy-images.git/ | 2.0.2 | +real 0m47.952s +user 0m25.809s +sys 0m2.991s # tfmod-istio