Sha256: e3c204cef872df3e84a5848636917b95c49de4873848adcab88f8896e0ca9d6a

Contents?: true

Size: 971 Bytes

Versions: 14

Compression:

Stored size: 971 Bytes

Contents

variable "cf_api_url" {
  type        = string
  description = "cloud.gov api url"
  default     = "https://api.fr.cloud.gov"
}

variable "cf_user" {
  type        = string
  description = "cloud.gov deployer account user"
}

variable "cf_password" {
  type        = string
  description = "secret; cloud.gov deployer account password"
  sensitive   = true
}

variable "cf_org_name" {
  type        = string
  description = "cloud.gov organization name"
}

variable "cf_space_name" {
  type        = string
  description = "cloud.gov space name (staging or prod)"
}

variable "env" {
  type        = string
  description = "deployment environment (staging, production)"
}

variable "recursive_delete" {
  type        = bool
  description = "when true, deletes service bindings attached to the resource (not recommended for production)"
  default     = false
}

variable "rds_plan_name" {
  type        = string
  description = "name of the service plan name to create"
}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
rails_template_18f-0.8.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.7.2 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.7.1 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.7.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.6.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.5.3 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.5.2 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.5.1 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.5.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.4.1 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.4.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.3.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.2.0 lib/generators/rails_template18f/terraform/templates/terraform/shared/database/variables.tf
rails_template_18f-0.1.0 templates/terraform/shared/database/variables.tf