cpflow 4.0.1 → 4.1.1

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.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/CHANGELOG.md +15 -2
  4. data/COMM-LICENSE.txt +9 -0
  5. data/Gemfile.lock +1 -1
  6. data/LICENSE +6 -19
  7. data/README.md +23 -20
  8. data/docs/commands.md +19 -3
  9. data/docs/postgres.md +2 -2
  10. data/docs/terraform/details.md +415 -0
  11. data/docs/terraform/example/.controlplane/controlplane.yml +29 -0
  12. data/docs/terraform/example/.controlplane/templates/app.yml +38 -0
  13. data/docs/terraform/example/.controlplane/templates/postgres.yml +30 -0
  14. data/docs/terraform/example/.controlplane/templates/rails.yml +26 -0
  15. data/docs/terraform/overview.md +105 -0
  16. data/lib/command/base.rb +40 -5
  17. data/lib/command/base_sub_command.rb +15 -0
  18. data/lib/command/build_image.rb +6 -2
  19. data/lib/command/delete.rb +3 -3
  20. data/lib/command/deploy_image.rb +2 -0
  21. data/lib/command/generate.rb +1 -1
  22. data/lib/command/ps.rb +1 -1
  23. data/lib/command/ps_stop.rb +2 -1
  24. data/lib/command/run.rb +1 -1
  25. data/lib/command/setup_app.rb +2 -2
  26. data/lib/command/terraform/base.rb +35 -0
  27. data/lib/command/terraform/generate.rb +99 -0
  28. data/lib/command/terraform/import.rb +79 -0
  29. data/lib/core/controlplane.rb +5 -5
  30. data/lib/core/shell.rb +9 -4
  31. data/lib/core/terraform_config/agent.rb +31 -0
  32. data/lib/core/terraform_config/audit_context.rb +31 -0
  33. data/lib/core/terraform_config/base.rb +25 -0
  34. data/lib/core/terraform_config/dsl.rb +102 -0
  35. data/lib/core/terraform_config/generator.rb +184 -0
  36. data/lib/core/terraform_config/gvc.rb +63 -0
  37. data/lib/core/terraform_config/identity.rb +35 -0
  38. data/lib/core/terraform_config/local_variable.rb +30 -0
  39. data/lib/core/terraform_config/policy.rb +151 -0
  40. data/lib/core/terraform_config/provider.rb +22 -0
  41. data/lib/core/terraform_config/required_provider.rb +23 -0
  42. data/lib/core/terraform_config/secret.rb +138 -0
  43. data/lib/core/terraform_config/volume_set.rb +155 -0
  44. data/lib/core/terraform_config/workload/main.tf +316 -0
  45. data/lib/core/terraform_config/workload/required_providers.tf +8 -0
  46. data/lib/core/terraform_config/workload/variables.tf +263 -0
  47. data/lib/core/terraform_config/workload.rb +132 -0
  48. data/lib/cpflow/version.rb +1 -1
  49. data/lib/cpflow.rb +50 -9
  50. data/lib/generator_templates/templates/postgres.yml +1 -1
  51. data/lib/patches/array.rb +8 -0
  52. data/lib/patches/hash.rb +47 -0
  53. data/lib/patches/string.rb +34 -0
  54. data/script/update_command_docs +7 -3
  55. metadata +34 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48de117fc2fbc2458b8469bfb3d93663c2950777803f84079dfdfa7cdbcda9e9
4
- data.tar.gz: e3a8347bd330f6df7d2d5e98a3692144fa04d3c935241fbacf7ab06c8f039e79
3
+ metadata.gz: ff0b8272e9a7bff7f8dc1e0b259188726cb2bbd0b7c87cc8c3bc498a984e2023
4
+ data.tar.gz: 8ee3ebc353a638b11fb2a00b98e1a4ff9347c1f1c3170d26ab5e0f23efae95f1
5
5
  SHA512:
6
- metadata.gz: '06907b1c67896b14b71376bc88253fcd74a675fb088aab8f6c7bf051ebfaf3f463c3ab96bf33bf64abe6da5bf1dff22529503508176a6d1fc5c35517021c9dc4'
7
- data.tar.gz: ae76127106fa6dc3544669163e94571d68ec149f22b8ed68d1cf0332c3f333b65e1a1d2f6f6b2cb75039d45bcf1f8418f1cb4d5ceba750cf11cc930ac5d38ac4
6
+ metadata.gz: affaed65cdfe25c9be5ef91f331208153b8755a7e1fa3aeb13309388212168a74b0c6d3e70d5f2907df0d726daa50ab3c624de3139d02a9ee669445a991d0411
7
+ data.tar.gz: 59db782ffc610191aeec401c77ddd939722c7597fecb13afa708f70e994142a33b81ef4ee2971700b496ca2dc1efb445e36956a35adc57050e3c3d6fb721fd79
data/.gitignore CHANGED
@@ -16,3 +16,7 @@
16
16
 
17
17
  /spec.log
18
18
  /spec/dummy/.controlplane/controlplane*-tmp-*.yml
19
+
20
+ # Generated configs
21
+ /terraform/
22
+ /.controlplane/
data/CHANGELOG.md CHANGED
@@ -16,9 +16,21 @@ _Please add entries here for your pull requests that have not yet been released.
16
16
 
17
17
  ### Fixed
18
18
 
19
- - Fixed issue where `run` command fails when runner workload has ENV but original workload does not. [PR 227](https://github.com/shakacode/control-plane-flow/pull/227) by [Rafael Gomes](https://github.com/rafaelgomesxyz).
19
+ - Fixed issue where `ps`, `ps:start`, `ps:stop`, `ps:wait`, and `run` commands fail when trying to fetch replicas with CPLN CLI. [PR 254](https://github.com/shakacode/control-plane-flow/pull/254) by [Rafael Gomes](https://github.com/rafaelgomesxyz).
20
+
21
+ ## [4.1.0] - 2024-12-17
20
22
 
23
+ ### Fixed
24
+
25
+ - Fixed issue where `run` command fails when runner workload has ENV but original workload does not. [PR 227](https://github.com/shakacode/control-plane-flow/pull/227) by [Rafael Gomes](https://github.com/rafaelgomesxyz).
21
26
  - Fixed potential infinite loop that could occur for a command if one of the execution steps fails and gets stuck. [PR 217](https://github.com/shakacode/control-plane-flow/pull/217) by [Zakir Dzhamaliddinov](https://github.com/zzaakiirr).
27
+ - Fixed issue where app cannot be deleted because one of the workloads has a volumeset in-use. [PR 245](https://github.com/shakacode/control-plane-flow/pull/245) by [Zakir Dzhamaliddinov](https://github.com/zzaakiirr).
28
+ - Fixed `resolv` may be not properly required [PR 250](https://github.com/shakacode/control-plane-flow/pull/250) by [Sergey Tarasov](https://github.com/dzirtusss).
29
+
30
+ ### Added
31
+
32
+ - Added `--docker-context` option to `build-image` command. [PR 250](https://github.com/shakacode/control-plane-flow/pull/250) by [Sergey Tarasov](https://github.com/dzirtusss).
33
+
22
34
 
23
35
  ## [4.0.0] - 2024-08-21
24
36
 
@@ -268,7 +280,8 @@ Deprecated `cpl` gem. New gem is `cpflow`.
268
280
 
269
281
  First release.
270
282
 
271
- [Unreleased]: https://github.com/shakacode/control-plane-flow/compare/v4.0.0...HEAD
283
+ [Unreleased]: https://github.com/shakacode/control-plane-flow/compare/v4.1.0...HEAD
284
+ [4.1.0]: https://github.com/shakacode/control-plane-flow/compare/v4.0.0...v4.1.0
272
285
  [4.0.0]: https://github.com/shakacode/control-plane-flow/compare/v3.0.1...v4.0.0
273
286
  [3.0.1]: https://github.com/shakacode/control-plane-flow/compare/v3.0.0...v3.0.1
274
287
  [3.0.0]: https://github.com/shakacode/control-plane-flow/compare/v2.2.4...v3.0.0
data/COMM-LICENSE.txt ADDED
@@ -0,0 +1,9 @@
1
+ Control Plane Flow - Commercial Licensing
2
+
3
+ Control Plane Flow is currently licensed under the GNU Lesser General Public License v3.0, which allows for broad use, including integration with proprietary software, as long as modifications to Control Plane Flow itself are open-sourced.
4
+
5
+ While there are no current commercial license offerings, ShakaCode LLC reserves the right to offer commercial licenses or additional options in the future. This may include support packages, premium features, or alternative licensing terms.
6
+
7
+ For any inquiries or expressions of interest in potential commercial licensing, please reach out to ShakaCode LLC at justin@shakacode.com.
8
+
9
+ You can find the full terms of the GNU Lesser General Public License v3.0 at <http://www.gnu.org/licenses/lgpl-3.0.html>.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cpflow (4.0.1)
4
+ cpflow (4.1.1)
5
5
  dotenv (~> 2.8.1)
6
6
  jwt (~> 2.8.1)
7
7
  psych (~> 5.1.0)
data/LICENSE CHANGED
@@ -1,21 +1,8 @@
1
- MIT License
1
+ Copyright (c) 2024 ShakaCode LLC
2
2
 
3
- Copyright (c) 2022 ShakaCode
3
+ Control Plane Flow is an Open Source project licensed under the terms of
4
+ the LGPLv3 license. Please see <http://www.gnu.org/licenses/lgpl-3.0.html> for license text.
4
5
 
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
6
+ Control Plane Flow may offer commercial-friendly licensing options in the future.
7
+ You can find any applicable commercial license terms in COMM-LICENSE.txt.
8
+ For inquiries, please contact justin@shakacode.com.
data/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # The power of Kubernetes with the ease of Heroku!
2
2
 
3
- <meta name="author" content="Justin Gordon and Sergey Tarasov">
4
- <meta name="description" content="Instructions on how to migrate from Heroku to Control Plane and a CLI called cpflow to make it easier.">
5
- <meta name="copyright" content="ShakaCode, 2023">
6
- <meta name="keywords" content="Control Plane, Heroku, Kubernetes, K8, Infrastructure">
3
+ <meta name="author" content="Justin Gordon and Sergey Tarasov" />
4
+ <meta name="description" content="Instructions on how to migrate from Heroku to Control Plane and a CLI called cpflow to make it easier." />
5
+ <meta name="copyright" content="ShakaCode, 2023" />
6
+ <meta name="keywords" content="Control Plane, Heroku, Kubernetes, K8, Infrastructure" />
7
7
  <meta name="google-site-verification" content="dIV4nMplcYl6YOKOaZMqgvdKXhLJ4cdYY6pS6e_YrPU" />
8
8
 
9
9
  [![RSpec](https://github.com/shakacode/control-plane-flow/actions/workflows/rspec.yml/badge.svg)](https://github.com/shakacode/control-plane-flow/actions/workflows/rspec.yml)
@@ -12,7 +12,9 @@
12
12
  [![Gem](https://badge.fury.io/rb/cpflow.svg)](https://badge.fury.io/rb/cpflow)
13
13
 
14
14
 
15
- Enable the [Heroku Flow](https://www.heroku.com/flow) deployment model with [Control Plane](https://shakacode.controlplane.com) using the `cpflow` gem.
15
+ Leverage the power of Kubernetes with the ease of Heroku! The `cpflow` gem enables simple CI configuration for Heroku-style "review apps," staging deployments, and seamless promotion from staging to production. This is similar to the the [Heroku Flow](https://www.heroku.com/flow) deployment model.
16
+
17
+ Follow the "convention over configuration" philosophy to streamline your deployment workflows and reduce complexity.
16
18
 
17
19
  ----
18
20
 
@@ -20,8 +22,8 @@ _If you need a free demo account for Control Plane (no CC required), you can con
20
22
 
21
23
  ---
22
24
 
23
- Be sure to see the [demo app](https://github.com/shakacode/react-webpack-rails-tutorial/tree/master/.controlplane)
24
- If you would like to see the simple YAML configuration and setup,
25
+ Be sure to see the [demo app](https://github.com/shakacode/react-webpack-rails-tutorial/tree/master/.controlplane), which includes simple YAML configurations and setup for `cpflow`.
26
+
25
27
  Also, check [how the `cpflow` gem (this project) is used in the Github actions](https://github.com/shakacode/react-webpack-rails-tutorial/blob/master/.github/actions/deploy-to-control-plane/action.yml).
26
28
  Here is a brief [video overview](https://www.youtube.com/watch?v=llaQoAV_6Iw).
27
29
 
@@ -33,11 +35,11 @@ Control Plane's `cpln` CLI.
33
35
  Heroku provides a UX and CLI that enables easy publishing of Ruby on Rails and other apps. This ease of use comes via
34
36
  many "Heroku" abstractions and naming conventions.
35
37
 
36
- Control Plane, on the other hand, gives you access to raw cloud computing power. However, you need to know precisely how
37
- to use it.
38
+ Control Plane provides access to raw cloud computing power but lacks the simple abstractions of Heroku. The `cpflow` CLI bridges this gap, delivering a streamlined and familiar experience for developers.
39
+
40
+ While this repository simplifies migration from Heroku, the `cpflow` CLI is versatile and can be used for new applications as well. It follows a **concept mapping** and **helper CLI** approach to streamline deployment workflows and minimize manual effort.
38
41
 
39
- To simplify migration to and usage of Control Plane for Heroku users, this repository provides a **concept mapping** and
40
- a **helper CLI** based on templates to save lots of day-to-day typing (and human errors).
42
+ Additionally, the documentation includes numerous examples and practical tips for teams transitioning from Heroku to Kubernetes, helping them make the most of Control Plane's advanced features.
41
43
 
42
44
  1. [Key Features](#key-features)
43
45
  2. [Concept Mapping](#concept-mapping)
@@ -52,14 +54,15 @@ a **helper CLI** based on templates to save lots of day-to-day typing (and human
52
54
  11. [CLI Commands Reference](#cli-commands-reference)
53
55
  12. [Mapping of Heroku Commands to `cpflow` and `cpln`](#mapping-of-heroku-commands-to-cpflow-and-cpln)
54
56
  13. [Examples](#examples)
55
- 14. [Migrating Postgres Database from Heroku Infrastructure](/docs/postgres.md)
56
- 15. [Migrating Redis Database from Heroku Infrastructure](/docs/redis.md)
57
- 16. [Tips](/docs/tips.md)
57
+ 14. [Migrating Postgres Database from Heroku Infrastructure](https://www.shakacode.com/control-plane-flow/docs/postgres/)
58
+ 15. [Migrating Redis Database from Heroku Infrastructure](https://www.shakacode.com/control-plane-flow/docs/redis/)
59
+ 16. [Tips](https://www.shakacode.com/control-plane-flow/docs/tips/)
58
60
 
59
61
  ## Key Features
60
62
 
61
- - A `cpflow` command to complement the default Control Plane `cpln` command with "Heroku style scripting." The Ruby source
62
- can serve as inspiration for your own scripts.
63
+ - The `cpflow` CLI complements the Control Plane `cpln` CLI, enabling "Heroku-style scripting" for review apps, staging, and production environments.
64
+ - Extensive Heroku-to-Control Plane migration examples included in the documentation.
65
+ - Convention-driven configuration to simplify workflows and reduce custom scripting requirements.
63
66
  - Easy to understand Heroku to Control Plane conventions in setup and naming.
64
67
  - **Safe, production-ready** equivalents of `heroku run` and `heroku run:detached` for Control Plane.
65
68
  - Automatic sequential release tagging for Docker images.
@@ -134,7 +137,7 @@ The `cpln` CLI is the Control Plane CLI.
134
137
 
135
138
  ## Steps to Migrate
136
139
 
137
- Click [here](/docs/migrating.md) to see the steps to migrate.
140
+ Click [here](https://www.shakacode.com/control-plane-flow/docs/migrating/) to see the steps to migrate.
138
141
 
139
142
  ## Configuration Files
140
143
 
@@ -476,7 +479,7 @@ development purposes.
476
479
 
477
480
  ## Scheduled Jobs
478
481
 
479
- Control Plane supports scheduled jobs via [cron workloads](https://shakadocs.controlplane.com/reference/workload#cron).
482
+ Control Plane supports scheduled jobs via [cron workloads](https://shakadocs.controlplane.com/reference/workload/types#cron).
480
483
 
481
484
  Here's a partial example of a template for a cron workload, using the app image:
482
485
 
@@ -500,7 +503,7 @@ spec:
500
503
  image: "/org/APP_ORG/image/APP_IMAGE"
501
504
  ```
502
505
 
503
- A complete example can be found at [templates/daily-task.yml](templates/daily-task.yml), optimized for Control Plane and
506
+ A complete example can be found at [templates/daily-task.yml](https://github.com/shakacode/control-plane-flow/blob/main/templates/daily-task.yml), optimized for Control Plane and
504
507
  suitable for development purposes.
505
508
 
506
509
  You can create the cron workload by adding the template for it to the `.controlplane/templates/` directory and running
@@ -510,7 +513,7 @@ Then to view the logs of the cron workload, you can run `cpflow logs -a my-app -
510
513
 
511
514
  ## CLI Commands Reference
512
515
 
513
- Click [here](/docs/commands.md) to see the commands.
516
+ Click [here](https://www.shakacode.com/control-plane-flow/docs/commands/) to see the commands.
514
517
 
515
518
  You can also run the following command:
516
519
 
data/docs/commands.md CHANGED
@@ -1,4 +1,4 @@
1
- <!-- NOTE: This file is automatically generated by running `script/generate_commands_docs`. Do NOT edit it manually. -->
1
+ { /* Automatically Generated <!-- NOTE: This file is automatically generated by running `script/update_command_docs`. Do NOT edit it manually. --> */}
2
2
 
3
3
  ## Common Options
4
4
 
@@ -431,8 +431,8 @@ cpflow run -a $APP_NAME --entrypoint /app/alternative-entrypoint.sh -- rails db:
431
431
  - Creates an app and all its workloads
432
432
  - Specify the templates for the app and workloads through `setup_app_templates` in the `.controlplane/controlplane.yml` file
433
433
  - This should only be used for temporary apps like review apps, never for persistent apps like production or staging (to update workloads for those, use 'cpflow apply-template' instead)
434
- - Configures app to have org-level secrets with default name "{APP_PREFIX}-secrets"
435
- using org-level policy with default name "{APP_PREFIX}-secrets-policy" (names can be customized, see docs)
434
+ - Configures app to have org-level secrets with default name `"{APP_PREFIX}-secrets"`
435
+ using org-level policy with default name `"{APP_PREFIX}-secrets-policy"` (names can be customized, see docs)
436
436
  - Creates identity for secrets if it does not exist
437
437
  - Use `--skip-secrets-setup` to prevent the automatic setup of secrets,
438
438
  or set it through `skip_secrets_setup` in the `.controlplane/controlplane.yml` file
@@ -444,6 +444,22 @@ cpflow run -a $APP_NAME --entrypoint /app/alternative-entrypoint.sh -- rails db:
444
444
  cpflow setup-app -a $APP_NAME
445
445
  ```
446
446
 
447
+ ### `terraform generate`
448
+
449
+ - Generates terraform configuration files based on `controlplane.yml` and `templates/` config
450
+
451
+ ```sh
452
+ cpflow terraform generate
453
+ ```
454
+
455
+ ### `terraform import`
456
+
457
+ - Imports terraform resources from the generated configuration files
458
+
459
+ ```sh
460
+ cpflow terraform import
461
+ ```
462
+
447
463
  ### `version`
448
464
 
449
465
  - Displays the current version of the CLI
data/docs/postgres.md CHANGED
@@ -25,7 +25,7 @@ And if the database is small or it is a hobby app, this should not be looked any
25
25
  However, this is not acceptable for 99% of production apps as their databases are huge and maintenance time
26
26
  should be as small as possible.
27
27
 
28
- Rough timing for a 1Gb database can be (but your mileage may vary):
28
+ Rough timing for a 1Tb database can be (but your mileage may vary):
29
29
 
30
30
  - 2.5h creating Heroku backup
31
31
  - 0.5h downloading backup to EC2
@@ -52,7 +52,7 @@ The migration process with Bucardo looks as follows:
52
52
 
53
53
  Maintenance downtime here can be minutes not hours or days like in p1, but no free lunches - the process is more complex.
54
54
 
55
- Rough timing for a 1Gb database can be (but your mileage may vary):
55
+ Rough timing for a 1Tb database can be (but your mileage may vary):
56
56
 
57
57
  - whatever setup time, no hurry
58
58
  - 1.5 days for onetimecopy (in 1 thread) - DDL changes not allowed, but no downtime
@@ -0,0 +1,415 @@
1
+ ### Terraform Configurations from CPLN Templates
2
+
3
+ #### Providers
4
+
5
+ Terraform provider configurations are controlled via `required_providers.tf` and `providers.tf`:
6
+
7
+ - **`required_providers.tf`**
8
+
9
+ ```hcl
10
+ terraform {
11
+ required_providers {
12
+ cpln = {
13
+ source = "controlplane-com/cpln"
14
+ version = "~> 1.0"
15
+ }
16
+ }
17
+ }
18
+ ```
19
+
20
+ - **`providers.tf`**
21
+
22
+ ```hcl
23
+ provider "cpln" {
24
+ org = "org-name-example"
25
+ }
26
+ ```
27
+
28
+ #### GVC (Global Virtual Cloud)
29
+
30
+ CPLN template in YAML format:
31
+
32
+ ```yaml
33
+ kind: gvc
34
+ name: app-name
35
+ description: app-description
36
+ tags:
37
+ tag-name-1: "tag-value-1"
38
+ tag-name-2: "tag-value-2"
39
+ spec:
40
+ domain: "app.example.com"
41
+ env:
42
+ - name: DATABASE_URL
43
+ value: "postgres://the_user:the_password@postgres.app-name.cpln.local:5432/app-name"
44
+ - name: RAILS_ENV
45
+ value: production
46
+ - name: RAILS_SERVE_STATIC_FILES
47
+ value: "true"
48
+ staticPlacement:
49
+ locationLinks:
50
+ - "//location/aws-us-west-2"
51
+ pullSecretLinks:
52
+ - "/org/org-name/secret/some-secret"
53
+ loadBalancer:
54
+ dedicated: true
55
+ trustedProxies: 0
56
+ ```
57
+
58
+ Will transform to Terraform config:
59
+
60
+ ```hcl
61
+ resource "cpln_gvc" "app-name" {
62
+ name = "app-name"
63
+ description = "app-description"
64
+ tags = {
65
+ tag_name_1 = "tag-value-1"
66
+ tag_name_2 = "tag-value-2"
67
+ }
68
+ domain = "app.example.com"
69
+ locations = ["aws-us-west-2"]
70
+ pull_secrets = ["cpln_secret.some-secret.name"]
71
+ env = {
72
+ DATABASE_URL = "postgres://the_user:the_password@postgres.app-name.cpln.local:5432/app-name"
73
+ RAILS_ENV = "production"
74
+ RAILS_SERVE_STATIC_FILES = "true"
75
+ }
76
+ load_balancer {
77
+ dedicated = true
78
+ trusted_proxies = 0
79
+ }
80
+ }
81
+ ```
82
+
83
+ #### Identity
84
+
85
+ CPLN template in YAML format:
86
+
87
+ ```yaml
88
+ kind: identity
89
+ name: postgres-poc-identity
90
+ description: postgres-poc-identity
91
+ tags:
92
+ tag-name-1: "tag-value-1"
93
+ tag-name-2: "tag-value-2"
94
+ ```
95
+
96
+ Will transform to Terraform config:
97
+
98
+ ```hcl
99
+ resource "cpln_identity" "postgres-poc-identity" {
100
+ name = "postgres-poc-identity"
101
+ description = "postgres-poc-identity"
102
+ tags = {
103
+ tag_name_1 = "tag-value-1"
104
+ tag_name_2 = "tag-value-2"
105
+ }
106
+ }
107
+ ```
108
+
109
+ #### Secret
110
+
111
+ CPLN template in YAML format
112
+
113
+ **For `aws` secret:**
114
+
115
+ ```yaml
116
+ kind: secret
117
+ name: aws
118
+ description: aws
119
+ type: aws
120
+ data:
121
+ accessKey: 'AccessKeyExample'
122
+ externalId: 'ExternalIdExample'
123
+ roleArn: arn:awskey
124
+ secretKey: 'SecretKeyExample'
125
+ ```
126
+
127
+ Will transform to Terraform config:
128
+
129
+ ```hcl
130
+ resource "cpln_secret" "aws" {
131
+ name = "aws"
132
+ description = "aws"
133
+ aws {
134
+ secret_key = "SecretKeyExample"
135
+ access_key = "AccessKeyExample"
136
+ role_arn = "arn:awskey"
137
+ external_id = "ExternalIdExample"
138
+ }
139
+ }
140
+ ```
141
+
142
+ **For `azure-connector` secret:**
143
+
144
+ ```yaml
145
+ kind: secret
146
+ name: azure-connector
147
+ description: azure_connector
148
+ tags:
149
+ tag1: tag-val
150
+ type: azure-connector
151
+ data:
152
+ code: 'CodeExample'
153
+ url: https://example.com
154
+ ```
155
+
156
+ Will transform to Terraform config:
157
+
158
+ ```hcl
159
+ resource "cpln_secret" "azure-connector" {
160
+ name = "azure-connector"
161
+ description = "azure_connector"
162
+ tags = {
163
+ tag1 = "tag-val"
164
+ }
165
+ azure_connector {
166
+ url = "https://example.com"
167
+ code = "CodeExample"
168
+ }
169
+ }
170
+ ```
171
+
172
+ **For `azure-sdk-secret` secret:**
173
+
174
+ ```yaml
175
+ kind: secret
176
+ name: azure-sdk-secret
177
+ description: azure-sdk-secret
178
+ type: azure-sdk
179
+ data: >-
180
+ {"subscriptionId":"subscriptionId","tenantId":"tenantId","clientId":"clientId","clientSecret":"CONFIDENTIAL"}
181
+ ```
182
+
183
+ Will transform to Terraform config:
184
+
185
+ ```hcl
186
+ resource "cpln_secret" "azure-sdk-secret" {
187
+ name = "azure-sdk-secret"
188
+ description = "azure-sdk-secret"
189
+ azure_sdk = "{"subscriptionId":"subscriptionId","tenantId":"tenantId","clientId":"clientID","clientSecret":"CONFIDENTIAL"}"
190
+ }
191
+ ```
192
+
193
+ **For `dictionary` secret:**
194
+
195
+ ```yaml
196
+ kind: secret
197
+ name: dictionary
198
+ description: dictionary
199
+ tags: {}
200
+ type: dictionary
201
+ data:
202
+ example: 'value'
203
+ ```
204
+
205
+ Will transform to Terraform config:
206
+
207
+ ```hcl
208
+ resource "cpln_secret" "dictionary" {
209
+ name = "dictionary"
210
+ description = "dictionary"
211
+ tags = {
212
+ }
213
+ dictionary = {
214
+ example = "value"
215
+ }
216
+ }
217
+ ```
218
+
219
+ Supported all types of the secrets which can be configured in Control Plane.
220
+
221
+ #### Policy
222
+
223
+ CPLN template in YAML format:
224
+
225
+ ```yaml
226
+ kind: policy
227
+ name: policy-name
228
+ description: policy description
229
+ tags:
230
+ tag1: tag1_value
231
+ tag2: tag2_value
232
+ target: all
233
+ targetKind: secret
234
+ targetLinks:
235
+ - "//secret/postgres-poc-credentials"
236
+ - "//secret/postgres-poc-entrypoint-script"
237
+ bindings:
238
+ - permissions:
239
+ - reveal
240
+ - view
241
+ - use
242
+ principalLinks:
243
+ - "//gvc/{{APP_NAME}}/identity/postgres-poc-identity"
244
+ - permissions:
245
+ - view
246
+ principalLinks:
247
+ - user/fake-user@fake-email.com
248
+ ```
249
+
250
+ Will be transformed to Terraform config:
251
+
252
+ ```hcl
253
+ resource "cpln_policy" "policy-name" {
254
+ name = "policy-name"
255
+ description = "policy description"
256
+ tags = {
257
+ tag1 = "tag1_value"
258
+ tag2 = "tag2_value"
259
+ }
260
+ target_kind = "secret"
261
+ gvc = cpln_gvc.app-name.name
262
+ target = "all"
263
+ target_links = ["postgres-poc-credentials", "postgres-poc-entrypoint-script"]
264
+ binding {
265
+ permissions = ["reveal", "view", "use"]
266
+ principal_links = ["gvc/app-name/identity/postgres-poc-identity"]
267
+ }
268
+ binding {
269
+ permissions = ["view"]
270
+ principal_links = ["user/fake-user@fake-email.com"]
271
+ }
272
+ }
273
+ ```
274
+
275
+ #### Volumeset
276
+
277
+ CPLN template in YAML format:
278
+
279
+ ```yaml
280
+ kind: volumeset
281
+ name: postgres-poc-vs
282
+ description: postgres-poc-vs
283
+ spec:
284
+ autoscaling:
285
+ maxCapacity: 1000
286
+ minFreePercentage: 1
287
+ scalingFactor: 1.1
288
+ fileSystemType: ext4
289
+ initialCapacity: 10
290
+ performanceClass: general-purpose-ssd
291
+ snapshots:
292
+ createFinalSnapshot: true
293
+ retentionDuration: 7d
294
+ ```
295
+
296
+ Will be transformed to Terraform config:
297
+
298
+ ```hcl
299
+ resource "cpln_volume_set" "postgres-poc-vs" {
300
+ gvc = cpln_gvc.app-name.name
301
+ name = "postgres-poc-vs"
302
+ description = "postgres-poc-vs"
303
+ initial_capacity = 10
304
+ performance_class = "general-purpose-ssd"
305
+ file_system_type = "ext4"
306
+ snapshots {
307
+ create_final_snapshot = true
308
+ retention_duration = "7d"
309
+ }
310
+ autoscaling {
311
+ max_capacity = 1000
312
+ min_free_percentage = 1
313
+ scaling_factor = 1.1
314
+ }
315
+ }
316
+ ```
317
+
318
+ #### Workload
319
+
320
+ CPLN template in YAML format:
321
+
322
+ ```yaml
323
+ kind: workload
324
+ name: rails
325
+ spec:
326
+ type: standard
327
+ containers:
328
+ - name: rails
329
+ cpu: 300m
330
+ env:
331
+ - name: LOG_LEVEL
332
+ value: debug
333
+ inheritEnv: true
334
+ image: {{APP_IMAGE_LINK}}
335
+ memory: 512Mi
336
+ ports:
337
+ - number: 3000
338
+ protocol: http
339
+ defaultOptions:
340
+ autoscaling:
341
+ maxScale: 1
342
+ capacityAI: false
343
+ firewallConfig:
344
+ external:
345
+ inboundAllowCIDR:
346
+ - 0.0.0.0/0
347
+ outboundAllowCIDR:
348
+ - 0.0.0.0/0
349
+ ```
350
+
351
+ Will be transformed to Terraform configs:
352
+
353
+ - **`rails.tf`**
354
+
355
+ ```hcl
356
+ module "rails" {
357
+ source = "../workload"
358
+ type = "standard"
359
+ name = "rails"
360
+ gvc = cpln_gvc.my-app-production.name
361
+ containers = {
362
+ rails: {
363
+ image: "/org/shakacode-demo/image/my-app-production:rails",
364
+ cpu: "300m",
365
+ memory: "512Mi",
366
+ inherit_env: true,
367
+ envs: local.rails_envs,
368
+ ports: [
369
+ {
370
+ number: 3000,
371
+ protocol: "http"
372
+ }
373
+ ]
374
+ }
375
+ }
376
+ options = {
377
+ autoscaling: {
378
+ max_scale: 1
379
+ }
380
+ capacity_ai: false
381
+ }
382
+ firewall_spec = {
383
+ external: {
384
+ inbound_allow_cidr: [
385
+ "0.0.0.0/0"
386
+ ],
387
+ outbound_allow_cidr: [
388
+ "0.0.0.0/0"
389
+ ]
390
+ }
391
+ }
392
+ }
393
+ ```
394
+
395
+ Notice the `source: ../workload` line - there is a common `workload` module which is used for generating Terraform configs from workload templates:
396
+ ```
397
+ workload/
398
+ ├── main.tf -- Configurable workload resource in HCL
399
+ ├── required_providers.tf -- Required providers for Terraform in HCL
400
+ ├── variables.tf -- Variables used to configure workload resource above
401
+ ```
402
+
403
+ - **`rails_envs.tf`**
404
+
405
+ ```hcl
406
+ locals {
407
+ rails_envs = {
408
+ LOG_LEVEL = "debug"
409
+ }
410
+ }
411
+ ```
412
+
413
+ ### References
414
+
415
+ - [Control Plane Terraform Provider](https://registry.terraform.io/providers/controlplane-com/cpln/latest/docs)