Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: aligning wording #173

Merged
merged 7 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions stacks/opentofu/workflows.tm.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
script "init" {
name = "OpenTofu Init"
description = "Downloads the required provider plugins and modules and setting up the backend"
description = "Download the required provider plugins and modules and set up the backend"

job {
commands = [
Expand All @@ -11,7 +11,7 @@ script "init" {

script "preview" {
name = "OpenTofu Deployment Preview"
description = "Create a preview of OpenTofu Changes and synchronize it to Terramate Cloud."
description = "Create a preview of OpenTofu changes and synchronize it to Terramate Cloud"

job {
commands = [
Expand All @@ -26,7 +26,7 @@ script "preview" {

script "deploy" {
name = "OpenTofu Deployment"
description = "Run a full OpenTofu deployment cycle and synchronize the result to Terramate Cloud."
description = "Run a full OpenTofu deployment cycle and synchronize the result to Terramate Cloud"

job {
commands = [
Expand All @@ -42,7 +42,7 @@ script "deploy" {

script "drift" "detect" {
name = "OpenTofu Drift Check"
description = "Detect drifts in OpenTofu configuration and synchronize it to Terramate Cloud."
description = "Detect drifts in OpenTofu configuration and synchronize it to Terramate Cloud"

job {
commands = [
Expand All @@ -56,7 +56,7 @@ script "drift" "detect" {

script "drift" "reconcile" {
name = "OpenTofu Drift Reconciliation"
description = "Reconciles drifts in all changed stacks."
description = "Reconcile drifts in all changed stacks"

job {
commands = [
Expand All @@ -71,7 +71,7 @@ script "drift" "reconcile" {

script "tofu" "render" {
name = "OpenTofu Show Plan"
description = "Renders a OpenTofu Plan."
description = "Render an OpenTofu plan"

job {
commands = [
Expand Down
12 changes: 6 additions & 6 deletions stacks/terraform/workflows.tm.hcl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
script "init" {
name = "Terraform Init"
description = "Downloads the required provider plugins and modules and setting up the backend"
description = "Download the required provider plugins and modules and set up the backend"

job {
commands = [
Expand All @@ -11,7 +11,7 @@ script "init" {

script "preview" {
name = "Terraform Deployment Preview"
description = "Create a preview of Terraform Changes and synchronize it to Terramate Cloud."
description = "Create a preview of Terraform changes and synchronize it to Terramate Cloud"

job {
commands = [
Expand All @@ -26,7 +26,7 @@ script "preview" {

script "deploy" {
name = "Terraform Deployment"
description = "Run a full Terraform deployment cycle and synchronize the result to Terramate Cloud."
description = "Run a full Terraform deployment cycle and synchronize the result to Terramate Cloud"

job {
commands = [
Expand All @@ -42,7 +42,7 @@ script "deploy" {

script "drift" "detect" {
name = "Terraform Drift Check"
description = "Detect drifts in Terraform configuration and synchronize it to Terramate Cloud."
description = "Detect drifts in Terraform configuration and synchronize it to Terramate Cloud"

job {
commands = [
Expand All @@ -56,7 +56,7 @@ script "drift" "detect" {

script "drift" "reconcile" {
name = "Terraform Drift Reconciliation"
description = "Reconciles drifts in all changed stacks."
description = "Reconcile drifts in all changed stacks"

job {
commands = [
Expand All @@ -71,7 +71,7 @@ script "drift" "reconcile" {

script "terraform" "render" {
name = "Terraform Show Plan"
description = "Renders a Terraform Plan."
description = "Render a Terraform plan"

job {
commands = [
Expand Down