convox_installer 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/lib/convox_installer/version.rb +1 -1
- data/terraform/elasticache.tf.erb +1 -8
- data/terraform/rds.tf.erb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2271381fe9a734996dc6aef94cf3a87a8af984dd8f6626faae6d3a2e0bc45025
|
|
4
|
+
data.tar.gz: 74daaacc19aa2f4cc0377d0ed4a4c950b5d5867a8fe1db2cba6b0948f7fdacec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f41f7abe7409de191f9d46d3101e502d08d69fa832b586045acc7dbf368bae9a7e6271f37082f1a7a0b2fa799004f2034dfcf002cba1d7f1feb4631b848ceca
|
|
7
|
+
data.tar.gz: b54016d53c008613666fd822b6df0dac7129bd3a02b9e944a34a79868997f5a3ca7e5ef90e09ccf471b75569163b9e70f17af18982f88c7532368f675252bc83
|
data/README.md
CHANGED
|
@@ -253,7 +253,7 @@ Adds an RDS database to your Terraform config.
|
|
|
253
253
|
- **Optional Config:**
|
|
254
254
|
- `database_allocated_storage` _(default: 30)_
|
|
255
255
|
- `database_engine` _(default: 'postgres')_
|
|
256
|
-
- `database_engine_version` _(default: '
|
|
256
|
+
- `database_engine_version` _(default: '15.7')_
|
|
257
257
|
- `database_instance_class` _(default: 'db.t3.small')_
|
|
258
258
|
- `database_multi_az` _(default: true)_
|
|
259
259
|
|
|
@@ -263,7 +263,7 @@ Adds an Elasticache cluster to your Terraform config.
|
|
|
263
263
|
|
|
264
264
|
- **Optional Config:**
|
|
265
265
|
- `engine` _(default: 'redis')_
|
|
266
|
-
- `engine_version` _(default: '
|
|
266
|
+
- `engine_version` _(default: '7.1')_
|
|
267
267
|
- `node_type` _(default: 'cache.t3.medium')_
|
|
268
268
|
- `num_cache_nodes` _(default: 1)_
|
|
269
269
|
- `port` _(default: 6379)_
|
|
@@ -1,20 +1,13 @@
|
|
|
1
1
|
resource "aws_elasticache_cluster" "elasticache_cluster" {
|
|
2
2
|
cluster_id = "<%= config.fetch(:stack_name) %>-elasticache-<%= config.fetch(:random_id) %>"
|
|
3
3
|
engine = "<%= config[:elasticache_engine] || 'redis' %>"
|
|
4
|
-
engine_version = "<%= config[:elasticache_engine_version] || '
|
|
4
|
+
engine_version = "<%= config[:elasticache_engine_version] || '7.1' %>"
|
|
5
5
|
node_type = "<%= config[:elasticache_node_type] || 'cache.t3.medium' %>"
|
|
6
6
|
num_cache_nodes = <%= config[:elasticache_num_cache_nodes] || 1 %>
|
|
7
7
|
port = <%= config[:elasticache_port] || 6379 %>
|
|
8
8
|
|
|
9
9
|
subnet_group_name = aws_elasticache_subnet_group.elasticache_subnet_group.name
|
|
10
10
|
security_group_ids = [aws_security_group.elasticache_security_group.id]
|
|
11
|
-
|
|
12
|
-
# Workaround for weird engine_version issue where 6.x works for creation, and fails for update
|
|
13
|
-
# See: https://github.com/hashicorp/terraform-provider-aws/issues/15625#issuecomment-727759811
|
|
14
|
-
# Fixed in version 3.38.0 of the Terraform AWS provider.
|
|
15
|
-
lifecycle {
|
|
16
|
-
ignore_changes = [engine_version]
|
|
17
|
-
}
|
|
18
11
|
}
|
|
19
12
|
|
|
20
13
|
resource "aws_elasticache_subnet_group" "elasticache_subnet_group" {
|
data/terraform/rds.tf.erb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
resource "aws_db_instance" "rds_database" {
|
|
2
2
|
allocated_storage = <%= config[:database_allocated_storage] || 30 %>
|
|
3
3
|
engine = "<%= config[:database_engine] || 'postgres' %>"
|
|
4
|
-
engine_version = "<%= config[:database_engine_version] || '
|
|
4
|
+
engine_version = "<%= config[:database_engine_version] || '15.7' %>"
|
|
5
5
|
instance_class = "<%= config[:database_instance_class] || 'db.t3.small' %>"
|
|
6
6
|
name = "<%= config.fetch(:stack_name).gsub('-', '_') %>_database"
|
|
7
7
|
identifier = "<%= config.fetch(:stack_name) %>-rds-<%= config.fetch(:random_id) %>"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: convox_installer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- DocSpring, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-07-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -132,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
132
132
|
- !ruby/object:Gem::Version
|
|
133
133
|
version: '0'
|
|
134
134
|
requirements: []
|
|
135
|
-
rubygems_version: 3.
|
|
135
|
+
rubygems_version: 3.5.14
|
|
136
136
|
signing_key:
|
|
137
137
|
specification_version: 4
|
|
138
138
|
summary: Build a Convox installation workflow
|