Skip to content
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
2 changes: 1 addition & 1 deletion sample-setups/basic-setup/directory-setup/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "directory_inputs" {
}))
description = <<-EOT
The inputs for the directory module.
- `business_unit`: Business unit of the project e.g., HR, IT or Sales
- `business_unit`: Business unit of the project, such as HR, IT, or Sales
- `costcenter`: Cost center to be used for subaccounts
- `directory_contacts`: Contact persons to be used for directories, added as label
- `region`: The geographical region for a directory. The parameter is optional
Expand Down
2 changes: 1 addition & 1 deletion sample-setups/basic-setup/subaccount-setup/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variable "globalaccount" {

variable "business_unit" {
type = string
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

variable "region" {
Expand Down
2 changes: 1 addition & 1 deletion sample-setups/modules/base-directory-setup/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ output "directory_name" {

output "business_unit" {
value = var.business_unit
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

output "costcenter" {
Expand Down
4 changes: 2 additions & 2 deletions sample-setups/modules/base-directory-setup/variables.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "business_unit" {
type = string
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

variable "region" {
Expand All @@ -20,5 +20,5 @@ variable "costcenter" {

variable "directory_contacts" {
type = list(string)
description = "Contact persons to be used for directory, added as label"
description = "Contact persons to be used for the directory, added as label"
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variable "subaccount_id" {

variable "instance_name" {
type = string
description = "Name of the Cloud Foundry environment instance."
description = "Name of the Cloud Foundry runtime instance."

validation {
condition = can(regex("^[a-zA-Z0-9_\\-\\.]{1,32}$", var.instance_name))
Expand All @@ -15,7 +15,7 @@ variable "instance_name" {

variable "plan_name" {
type = string
description = "Desired service plan for the Cloud Foundry environment instance."
description = "Desired service plan for the Cloud Foundry runtime instance."
default = "standard"
}

Expand Down
8 changes: 4 additions & 4 deletions sample-setups/modules/sap-btp-environment/kyma/variables.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
variable "subaccount_id" {
type = string
description = "ID of the subaccount where the Cloud Foundry environment will be created."
description = "ID of the subaccount where the Kyma runtime is created."
}

variable "instance_name" {
type = string
description = "Name of the Kyma environment instance."
description = "Name of the Kyma runtime instance."

validation {
condition = can(regex("^[a-zA-Z0-9_\\-\\.]{1,32}$", var.instance_name))
Expand All @@ -16,7 +16,7 @@ variable "instance_name" {
variable "plan_name" {
type = string
description = <<-EOT
Desired service plan for the Kyma environment instance.
Desired service plan for the Kyma runtime instance.
If not provided it will be set to the default value of the region.
EOT
default = null
Expand All @@ -31,7 +31,7 @@ variable "kyma_administrators" {
variable "oidc" {
description = "Custom OpenID Connect IdP configuration to authenticate users in your Kyma runtime."
type = object({
# the URL of the OpenID issuer (use the https schema)
# the URL of the OpenID issuer (use the HTTPS schema)
issuer_url = string

# the client ID for the OpenID client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ output "directory_labels" {

output "business_unit" {
value = var.business_unit
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

output "costcenter" {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
variable "business_unit" {
type = string
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

variable "region" {
type = string
default = null
description = <<-EOT
The geographical region for a directory. The parameter is optional
If you set it the possible values are: `EMEA`, `APAC`, `AMER`.
If you set it, the possible values are: `EMEA`, `APAC`, `AMER`.
Default value: `null`.
EOT

Expand All @@ -30,14 +30,17 @@ variable "directory_contacts" {

variable "add_managed_by_label" {
type = bool
description = "Add label that resource is managed by Terraform"
description = <<-EOT
Add label that the resource is managed by Terraform
Default value: `true`
EOT
default = true
}

variable "management_tool" {
type = string
description = <<-EOT
Defines which tool is used for management of infrastructure.
The tool that's used to manage the infrastructure.
Possible values: `Terraform`, `OpenTofu`.
Default value: `Terraform`.
EOT
Expand All @@ -59,7 +62,7 @@ variable "label_name_case" {
type = string
default = "title"
description = <<-EOT
Controls the letter case of the `label` names for labels generated by this module.
Controls the capitalization of the `label` names for labels generated by this module.
Possible values: `lower`, `title`, `upper`.
Default value: `title`.
EOT
Expand All @@ -74,7 +77,7 @@ variable "label_value_case" {
type = string
default = "lower"
description = <<-EOT
Controls the letter case of the `label` values for labels generated by this module.
Controls the capitalization of the `label` values for labels generated by this module.
Possible values: `lower`, `title`, `upper` and `none` (no transformation).
Default value: `lower`.
EOT
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variable "business_unit" {
type = string
description = "Business unit of the project e.g., HR, IT or Sales"
description = "Business unit of the project, such as HR, IT, or Sales"
}

variable "stage" {
Expand Down Expand Up @@ -37,14 +37,17 @@ variable "subaccount_contacts" {

variable "add_managed_by_label" {
type = bool
description = "Add label that resource is managed by Terraform"
description = <<-EOT
Add label that the resource is managed by Terraform
Default value: `true`
EOT
default = true
}

variable "management_tool" {
type = string
description = <<-EOT
Defines which tool is used for management of infrastructure.
The tool that's used to manage the infrastructure.
Possible values: `Terraform`, `OpenTofu`.
Default value: `Terraform`.
EOT
Expand All @@ -66,7 +69,7 @@ variable "label_name_case" {
type = string
default = "title"
description = <<-EOT
Controls the letter case of the `label` names for labels generated by this module.
Controls the capitalization of the `label` names for labels generated by this module.
Possible values: `lower`, `title`, `upper`.
Default value: `title`.
EOT
Expand All @@ -81,7 +84,7 @@ variable "label_value_case" {
type = string
default = "lower"
description = <<-EOT
Controls the letter case of the `label` values for labels generated by this module.
Controls the capitalization of the `label` values for labels generated by this module.
Possible values: `lower`, `title`, `upper` and `none` (no transformation).
Default value: `lower`.
EOT
Expand Down