Skip to content

Commit

Permalink
Merge branch 'main' into release-please--branches--main--components--…
Browse files Browse the repository at this point in the history
…aws-ecs
  • Loading branch information
ehakan authored May 10, 2024
2 parents dce9c88 + 05e9300 commit c973137
Show file tree
Hide file tree
Showing 66 changed files with 122 additions and 58 deletions.
9 changes: 8 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
{
"metadata": "0.0.0",
"modules/metadata": "0.1.0",
"modules/aws-ecs": "0.1.0"
"modules/aws-ecs": "0.1.0",
"modules/aws-dynamodb-table": "0.1.0",
"modules/aws-acm": "0.1.0",
"modules/aws-cloudwatch": "0.1.0",
"modules/aws-eks": "0.1.0",
"modules/aws-iam": "0.1.0",
"modules/aws-rds": "0.1.0",
"modules/aws-security-group": "0.1.0"
}
8 changes: 8 additions & 0 deletions modules/aws-acm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
2 changes: 1 addition & 1 deletion modules/aws-acm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Terraform module which creates ACM certificates and validates them using Route53
```hcl
module "acm" {
source = "terraform-modules/acm/aws"
version = "~> 4.0"
version = "~> 0.1"
domain_name = "my-domain.com"
zone_id = "Z2ES7B9AZ6SHAE"
Expand Down
8 changes: 8 additions & 0 deletions modules/aws-cloudwatch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
2 changes: 1 addition & 1 deletion modules/aws-cloudwatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Terraform module which creates Cloudwatch resources on AWS.
```hcl
module "log_metric_filter" {
source = "terraform-aws-modules/cloudwatch/aws//modules/log-metric-filter"
version = "~> 3.0"
version = "~> 0.1"
log_group_name = "my-application-logs"
Expand Down
8 changes: 8 additions & 0 deletions modules/aws-dynamodb-table/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
8 changes: 8 additions & 0 deletions modules/aws-eks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
2 changes: 1 addition & 1 deletion modules/aws-eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Some of the addon/controller policies that are currently supported include:
```hcl
module "eks" {
source = "terraform-modules/eks/aws"
version = "~> 18.0"
version = "~> 0.1"
cluster_name = "my-cluster"
cluster_version = "1.22"
Expand Down
8 changes: 8 additions & 0 deletions modules/aws-iam/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module "karpenter_irsa_role" {
module "eks" {
source = "terraform-modules/eks/aws"
version = "~> 18.6"
version = "~> 0.1"
cluster_name = "my-cluster"
cluster_version = "1.21"
Expand Down
8 changes: 8 additions & 0 deletions modules/aws-rds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
8 changes: 8 additions & 0 deletions modules/aws-security-group/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.1.0 (2024-05-10)


### Features

* import previous modules ([#153](https://github.com/kloia/platform-modules/issues/153)) ([126a74f](https://github.com/kloia/platform-modules/commit/126a74f8430ca971e61740f72de776dee210bb55))
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/activemq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "activemq_security_group" {
source = "terraform-modules/security-group/aws//modules/activemq"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/alertmanager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "alertmanager_security_group" {
source = "terraform-modules/security-group/aws//modules/alertmanager"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "carbon_relay-ng_security_group" {
source = "terraform-modules/security-group/aws//modules/carbon-relay-ng"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/cassandra/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "cassandra_security_group" {
source = "terraform-modules/security-group/aws//modules/cassandra"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/consul/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "consul_security_group" {
source = "terraform-modules/security-group/aws//modules/consul"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/docker-swarm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "docker_swarm_security_group" {
source = "terraform-modules/security-group/aws//modules/docker-swarm"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "elasticsearch_security_group" {
source = "terraform-modules/security-group/aws//modules/elasticsearch"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/etcd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "etcd_security_group" {
source = "terraform-modules/security-group/aws//modules/etcd"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/grafana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "grafana_security_group" {
source = "terraform-modules/security-group/aws//modules/grafana"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "graphite_statsd_security_group" {
source = "terraform-modules/security-group/aws//modules/graphite-statsd"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/http-80/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "http_80_security_group" {
source = "terraform-modules/security-group/aws//modules/http-80"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/http-8080/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "http_8080_security_group" {
source = "terraform-modules/security-group/aws//modules/http-8080"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/https-443/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "https_443_security_group" {
source = "terraform-modules/security-group/aws//modules/https-443"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/https-8443/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "https_8443_security_group" {
source = "terraform-modules/security-group/aws//modules/https-8443"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/ipsec-4500/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "ipsec_4500_security_group" {
source = "terraform-modules/security-group/aws//modules/ipsec-4500"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/ipsec-500/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "ipsec_500_security_group" {
source = "terraform-modules/security-group/aws//modules/ipsec-500"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "kafka_security_group" {
source = "terraform-modules/security-group/aws//modules/kafka"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/kibana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "kibana_security_group" {
source = "terraform-modules/security-group/aws//modules/kibana"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "kubernetes_api_security_group" {
source = "terraform-modules/security-group/aws//modules/kubernetes-api"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/ldap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "ldap_security_group" {
source = "terraform-modules/security-group/aws//modules/ldap"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/ldaps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "ldaps_security_group" {
source = "terraform-modules/security-group/aws//modules/ldaps"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/logstash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "logstash_security_group" {
source = "terraform-modules/security-group/aws//modules/logstash"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/memcached/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "memcached_security_group" {
source = "terraform-modules/security-group/aws//modules/memcached"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "minio_security_group" {
source = "terraform-modules/security-group/aws//modules/minio"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/mongodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "mongodb_security_group" {
source = "terraform-modules/security-group/aws//modules/mongodb"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/mssql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "mssql_security_group" {
source = "terraform-modules/security-group/aws//modules/mssql"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "mysql_security_group" {
source = "terraform-modules/security-group/aws//modules/mysql"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/nfs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "nfs_security_group" {
source = "terraform-modules/security-group/aws//modules/nfs"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/nomad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "nomad_security_group" {
source = "terraform-modules/security-group/aws//modules/nomad"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/ntp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "ntp_security_group" {
source = "terraform-modules/security-group/aws//modules/ntp"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-security-group/modules/openvpn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
```hcl
module "openvpn_security_group" {
source = "terraform-modules/security-group/aws//modules/openvpn"
version = "~> 4.0"
version = "~> 0.1"
# omitted...
}
Expand Down
Loading

0 comments on commit c973137

Please sign in to comment.