diff --git a/README.md b/README.md
index fec7300..2195416 100644
--- a/README.md
+++ b/README.md
@@ -53,58 +53,40 @@ For more information, refer to [variables.tf](variables.tf), list of inputs belo
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
-| [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,
in the order they appear in the list. New attributes are appended to the
end of the list. The elements of the list are joined by the `delimiter`
and treated as a single ID element. | `list(string)` | `[]` | no |
| [comment](#input\_comment) | Comment / description of Snowflake user | `string` | `null` | no |
-| [context](#input\_context) | Single object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables as `null` to use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional\_tag\_map, which are merged. | `any` |
{
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}
| no |
+| [context\_templates](#input\_context\_templates) | Map of context templates used for naming conventions - this variable supersedes `naming_scheme.properties` and `naming_scheme.delimiter` configuration | `map(string)` | `{}` | no |
| [default\_namespace](#input\_default\_namespace) | Specifies the namespace (database only or database and schema) that is active by default for the user's session upon login. | `string` | `null` | no |
| [default\_role](#input\_default\_role) | Specifies the role that is active by default for the user's session upon login. | `string` | `null` | no |
| [default\_secondary\_roles\_option](#input\_default\_secondary\_roles\_option) | Specifies the secondary roles that are active for the user’s session upon login.
Valid values are (case-insensitive): DEFAULT \| NONE \| ALL | `string` | `"DEFAULT"` | no |
| [default\_warehouse](#input\_default\_warehouse) | Specifies the virtual warehouse that is active by default for the user's session upon login. | `string` | `null` | no |
-| [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.
Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
-| [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.
Map of maps. Keys are names of descriptors. Values are maps of the form
`{
format = string
labels = list(string)
}`
(Type is `any` so the map values can later be enhanced to provide additional options.)
`format` is a Terraform format string to be passed to the `format()` function.
`labels` is a list of labels, in order, to pass to `format()` function.
Label values will be normalized before being passed to `format()` so they will be
identical to how they appear in `id`.
Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |
-| [descriptor\_name](#input\_descriptor\_name) | Name of the descriptor used to form a Snowflake User name | `string` | `"snowflake-user"` | no |
| [disable\_mfa](#input\_disable\_mfa) | Disable Multi-Factor Authentication for the user (works only with `type = PERSON`) | `bool` | `false` | no |
+| [disabled](#input\_disabled) | Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user. | `bool` | `false` | no |
| [display\_name](#input\_display\_name) | Name displayed for the user in the Snowflake web interface. | `string` | `null` | no |
| [email](#input\_email) | Email address for the user | `string` | `null` | no |
| [enable\_unredacted\_query\_syntax\_error](#input\_enable\_unredacted\_query\_syntax\_error) | Controls whether query text is redacted if a SQL query fails due to a syntax or parsing error. If FALSE, the content of a failed query is redacted in the views, pages, and functions that provide a query history.
Only users with a role that is granted or inherits the AUDIT privilege can set the ENABLE\_UNREDACTED\_QUERY\_SYNTAX\_ERROR parameter.
When using the ALTER USER command to set the parameter to TRUE for a particular user, modify the user that you want to see the query text, not the user who executed the query (if those are different users). | `bool` | `null` | no |
-| [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no |
-| [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no |
| [first\_name](#input\_first\_name) | First name of the user (works only with `type = PERSON`) | `string` | `null` | no |
| [generate\_password](#input\_generate\_password) | Generate a random password using Terraform | `bool` | `false` | no |
| [generate\_rsa\_key](#input\_generate\_rsa\_key) | Whether automatically generate an RSA key - IMPORTANT
The private key generated by this resource will be stored
unencrypted in your Terraform state file.
Use of this resource for production deployments is not recommended. | `bool` | `false` | no |
| [grant\_default\_roles](#input\_grant\_default\_roles) | Whether to grant default\_role to Snowflake User | `bool` | `true` | no |
-| [id\_length\_limit](#input\_id\_length\_limit) | Limit `id` to this many characters (minimum 6).
Set to `0` for unlimited length.
Set to `null` for keep the existing setting, which defaults to `0`.
Does not affect `id_full`. | `number` | `null` | no |
| [ignore\_changes\_on\_defaults](#input\_ignore\_changes\_on\_defaults) | Whether to ignore configuration of `default_warehouse`, `default_role` and `default_namespace` (works only with `type = PERSON`) | `bool` | `false` | no |
-| [label\_key\_case](#input\_label\_key\_case) | Controls the letter case of the `tags` keys (label names) for tags generated by this module.
Does not affect keys of tags passed in via the `tags` input.
Possible values: `lower`, `title`, `upper`.
Default value: `title`. | `string` | `null` | no |
-| [label\_order](#input\_label\_order) | The order in which the labels (ID elements) appear in the `id`.
Defaults to ["namespace", "environment", "stage", "name", "attributes"].
You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. | `list(string)` | `null` | no |
-| [label\_value\_case](#input\_label\_value\_case) | Controls the letter case of ID elements (labels) as included in `id`,
set as tag values, and output by this module individually.
Does not affect values of tags passed in via the `tags` input.
Possible values: `lower`, `title`, `upper` and `none` (no transformation).
Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.
Default value: `lower`. | `string` | `null` | no |
-| [labels\_as\_tags](#input\_labels\_as\_tags) | Set of labels (ID elements) to include as tags in the `tags` output.
Default is to include all labels.
Tags with empty values will not be included in the `tags` output.
Set to `[]` to suppress all generated tags.
**Notes:**
The value of the `name` tag, if included, will be the `id`, not the `name`.
Unlike other `null-label` inputs, the initial setting of `labels_as_tags` cannot be
changed in later chained modules. Attempts to change it will be silently ignored. | `set(string)` | [
"default"
]
| no |
| [last\_name](#input\_last\_name) | Last name of the user (works only with `type = PERSON`) | `string` | `null` | no |
| [log\_level](#input\_log\_level) | Specifies the severity level of messages that should be ingested and made available in the active event table. Messages at the specified level (and at more severe levels) are ingested. | `string` | `null` | no |
| [login\_name](#input\_login\_name) | The name users use to log in. If not supplied, snowflake will use name instead. | `string` | `null` | no |
| [middle\_name](#input\_middle\_name) | Middle name of the user (works only with `type = PERSON`) | `string` | `null` | no |
| [must\_change\_password](#input\_must\_change\_password) | Should the user change the password on login. Should be set to true for non service account users | `bool` | `true` | no |
-| [name](#input\_name) | ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
This is the only ID element not also included as a `tag`.
The "name" tag is set to the full `id` string. There is no tag with the value of the `name` input. | `string` | `null` | no |
-| [namespace](#input\_namespace) | ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique | `string` | `null` | no |
+| [name](#input\_name) | Name of the resource | `string` | n/a | yes |
+| [name\_scheme](#input\_name\_scheme) | Naming scheme configuration for the resource. This configuration is used to generate names using context provider:
- `properties` - list of properties to use when creating the name - is superseded by `var.context_templates`
- `delimiter` - delimited used to create the name from `properties` - is superseded by `var.context_templates`
- `context_template_name` - name of the context template used to create the name
- `replace_chars_regex` - regex to use for replacing characters in property-values created by the provider - any characters that match the regex will be removed from the name
- `extra_values` - map of extra label-value pairs, used to create a name | object({
properties = optional(list(string), ["environment", "name"])
delimiter = optional(string, "_")
context_template_name = optional(string, "snowflake-user")
replace_chars_regex = optional(string, "[^a-zA-Z0-9_]")
extra_values = optional(map(string))
})
| `{}` | no |
| [network\_policy](#input\_network\_policy) | Specifies the network policy to enforce for your account. Network policies enable restricting access to your account based on users’ IP address. | `string` | `null` | no |
| [query\_tag](#input\_query\_tag) | Optional string that can be used to tag queries and other SQL statements executed within a session. | `string` | `null` | no |
-| [regex\_replace\_chars](#input\_regex\_replace\_chars) | Terraform regular expression (regex) string.
Characters matching the regex will be removed from the ID elements.
If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. | `string` | `null` | no |
| [rsa\_public\_key](#input\_rsa\_public\_key) | Specifies the user's RSA public key; used for key-pair authentication. Must be on 1 line without header and trailer. | `string` | `null` | no |
| [rsa\_public\_key\_2](#input\_rsa\_public\_key\_2) | Specifies the user's second RSA public key; used to rotate the public and private keys
for key-pair authentication based on an expiration schedule set by your organization.
Must be on 1 line without header and trailer." | `string` | `null` | no |
-| [stage](#input\_stage) | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
-| [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).
Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
-| [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |
| [timezone](#input\_timezone) | Specifies the time zone for the session. You can specify a time zone name or a link name from release 2021a of the IANA Time Zone Database (e.g. America/Los\_Angeles, Europe/London, UTC, Etc/GMT, etc.). | `string` | `null` | no |
| [trace\_level](#input\_trace\_level) | Controls how trace events are ingested into the event table. | `string` | `null` | no |
| [type](#input\_type) | Type of the user. Valid values are PERSON, SERVICE, LEGACY\_SERVICE | `string` | `"PERSON"` | no |
## Modules
-| Name | Source | Version |
-|------|--------|---------|
-| [this](#module\_this) | cloudposse/label/null | 0.25.0 |
-| [user\_label](#module\_user\_label) | cloudposse/label/null | 0.25.0 |
+No modules.
## Outputs
@@ -137,6 +119,7 @@ For more information, refer to [variables.tf](variables.tf), list of inputs belo
| Name | Version |
|------|---------|
+| [context](#provider\_context) | >=0.4.0 |
| [random](#provider\_random) | >= 3.0.0 |
| [snowflake](#provider\_snowflake) | ~> 0.96 |
| [tls](#provider\_tls) | ~> 4.0 |
@@ -146,6 +129,7 @@ For more information, refer to [variables.tf](variables.tf), list of inputs belo
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.3.0 |
+| [context](#requirement\_context) | >=0.4.0 |
| [random](#requirement\_random) | >= 3.0.0 |
| [snowflake](#requirement\_snowflake) | ~> 0.96 |
| [tls](#requirement\_tls) | ~> 4.0 |
@@ -161,6 +145,7 @@ For more information, refer to [variables.tf](variables.tf), list of inputs belo
| [snowflake_user.defaults_not_enforced](https://registry.terraform.io/providers/Snowflake-Labs/snowflake/latest/docs/resources/user) | resource |
| [snowflake_user.this](https://registry.terraform.io/providers/Snowflake-Labs/snowflake/latest/docs/resources/user) | resource |
| [tls_private_key.this](https://registry.terraform.io/providers/hashicorp/tls/latest/docs/resources/private_key) | resource |
+| [context_label.this](https://registry.terraform.io/providers/cloudposse/context/latest/docs/data-sources/label) | data source |
## CONTRIBUTING
diff --git a/context.tf b/context.tf
deleted file mode 100644
index 5e0ef88..0000000
--- a/context.tf
+++ /dev/null
@@ -1,279 +0,0 @@
-#
-# ONLY EDIT THIS FILE IN github.com/cloudposse/terraform-null-label
-# All other instances of this file should be a copy of that one
-#
-#
-# Copy this file from https://github.com/cloudposse/terraform-null-label/blob/master/exports/context.tf
-# and then place it in your Terraform module to automatically get
-# Cloud Posse's standard configuration inputs suitable for passing
-# to Cloud Posse modules.
-#
-# curl -sL https://raw.githubusercontent.com/cloudposse/terraform-null-label/master/exports/context.tf -o context.tf
-#
-# Modules should access the whole context as `module.this.context`
-# to get the input variables with nulls for defaults,
-# for example `context = module.this.context`,
-# and access individual variables as `module.this.`,
-# with final values filled in.
-#
-# For example, when using defaults, `module.this.context.delimiter`
-# will be null, and `module.this.delimiter` will be `-` (hyphen).
-#
-
-module "this" {
- source = "cloudposse/label/null"
- version = "0.25.0" # requires Terraform >= 0.13.0
-
- enabled = var.enabled
- namespace = var.namespace
- tenant = var.tenant
- environment = var.environment
- stage = var.stage
- name = var.name
- delimiter = var.delimiter
- attributes = var.attributes
- tags = var.tags
- additional_tag_map = var.additional_tag_map
- label_order = var.label_order
- regex_replace_chars = var.regex_replace_chars
- id_length_limit = var.id_length_limit
- label_key_case = var.label_key_case
- label_value_case = var.label_value_case
- descriptor_formats = var.descriptor_formats
- labels_as_tags = var.labels_as_tags
-
- context = var.context
-}
-
-# Copy contents of cloudposse/terraform-null-label/variables.tf here
-
-variable "context" {
- type = any
- default = {
- enabled = true
- namespace = null
- tenant = null
- environment = null
- stage = null
- name = null
- delimiter = null
- attributes = []
- tags = {}
- additional_tag_map = {}
- regex_replace_chars = null
- label_order = []
- id_length_limit = null
- label_key_case = null
- label_value_case = null
- descriptor_formats = {}
- # Note: we have to use [] instead of null for unset lists due to
- # https://github.com/hashicorp/terraform/issues/28137
- # which was not fixed until Terraform 1.0.0,
- # but we want the default to be all the labels in `label_order`
- # and we want users to be able to prevent all tag generation
- # by setting `labels_as_tags` to `[]`, so we need
- # a different sentinel to indicate "default"
- labels_as_tags = ["unset"]
- }
- description = <<-EOT
- Single object for setting entire context at once.
- See description of individual variables for details.
- Leave string and numeric variables as `null` to use default value.
- Individual variable settings (non-null) override settings in context object,
- except for attributes, tags, and additional_tag_map, which are merged.
- EOT
-
- validation {
- condition = lookup(var.context, "label_key_case", null) == null ? true : contains(["lower", "title", "upper"], var.context["label_key_case"])
- error_message = "Allowed values: `lower`, `title`, `upper`."
- }
-
- validation {
- condition = lookup(var.context, "label_value_case", null) == null ? true : contains(["lower", "title", "upper", "none"], var.context["label_value_case"])
- error_message = "Allowed values: `lower`, `title`, `upper`, `none`."
- }
-}
-
-variable "enabled" {
- type = bool
- default = null
- description = "Set to false to prevent the module from creating any resources"
-}
-
-variable "namespace" {
- type = string
- default = null
- description = "ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique"
-}
-
-variable "tenant" {
- type = string
- default = null
- description = "ID element _(Rarely used, not included by default)_. A customer identifier, indicating who this instance of a resource is for"
-}
-
-variable "environment" {
- type = string
- default = null
- description = "ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT'"
-}
-
-variable "stage" {
- type = string
- default = null
- description = "ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release'"
-}
-
-variable "name" {
- type = string
- default = null
- description = <<-EOT
- ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
- This is the only ID element not also included as a `tag`.
- The "name" tag is set to the full `id` string. There is no tag with the value of the `name` input.
- EOT
-}
-
-variable "delimiter" {
- type = string
- default = null
- description = <<-EOT
- Delimiter to be used between ID elements.
- Defaults to `-` (hyphen). Set to `""` to use no delimiter at all.
- EOT
-}
-
-variable "attributes" {
- type = list(string)
- default = []
- description = <<-EOT
- ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,
- in the order they appear in the list. New attributes are appended to the
- end of the list. The elements of the list are joined by the `delimiter`
- and treated as a single ID element.
- EOT
-}
-
-variable "labels_as_tags" {
- type = set(string)
- default = ["default"]
- description = <<-EOT
- Set of labels (ID elements) to include as tags in the `tags` output.
- Default is to include all labels.
- Tags with empty values will not be included in the `tags` output.
- Set to `[]` to suppress all generated tags.
- **Notes:**
- The value of the `name` tag, if included, will be the `id`, not the `name`.
- Unlike other `null-label` inputs, the initial setting of `labels_as_tags` cannot be
- changed in later chained modules. Attempts to change it will be silently ignored.
- EOT
-}
-
-variable "tags" {
- type = map(string)
- default = {}
- description = <<-EOT
- Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).
- Neither the tag keys nor the tag values will be modified by this module.
- EOT
-}
-
-variable "additional_tag_map" {
- type = map(string)
- default = {}
- description = <<-EOT
- Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
- This is for some rare cases where resources want additional configuration of tags
- and therefore take a list of maps with tag key, value, and additional configuration.
- EOT
-}
-
-variable "label_order" {
- type = list(string)
- default = null
- description = <<-EOT
- The order in which the labels (ID elements) appear in the `id`.
- Defaults to ["namespace", "environment", "stage", "name", "attributes"].
- You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present.
- EOT
-}
-
-variable "regex_replace_chars" {
- type = string
- default = null
- description = <<-EOT
- Terraform regular expression (regex) string.
- Characters matching the regex will be removed from the ID elements.
- If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits.
- EOT
-}
-
-variable "id_length_limit" {
- type = number
- default = null
- description = <<-EOT
- Limit `id` to this many characters (minimum 6).
- Set to `0` for unlimited length.
- Set to `null` for keep the existing setting, which defaults to `0`.
- Does not affect `id_full`.
- EOT
- validation {
- condition = var.id_length_limit == null ? true : var.id_length_limit >= 6 || var.id_length_limit == 0
- error_message = "The id_length_limit must be >= 6 if supplied (not null), or 0 for unlimited length."
- }
-}
-
-variable "label_key_case" {
- type = string
- default = null
- description = <<-EOT
- Controls the letter case of the `tags` keys (label names) for tags generated by this module.
- Does not affect keys of tags passed in via the `tags` input.
- Possible values: `lower`, `title`, `upper`.
- Default value: `title`.
- EOT
-
- validation {
- condition = var.label_key_case == null ? true : contains(["lower", "title", "upper"], var.label_key_case)
- error_message = "Allowed values: `lower`, `title`, `upper`."
- }
-}
-
-variable "label_value_case" {
- type = string
- default = null
- description = <<-EOT
- Controls the letter case of ID elements (labels) as included in `id`,
- set as tag values, and output by this module individually.
- Does not affect values of tags passed in via the `tags` input.
- Possible values: `lower`, `title`, `upper` and `none` (no transformation).
- Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.
- Default value: `lower`.
- EOT
-
- validation {
- condition = var.label_value_case == null ? true : contains(["lower", "title", "upper", "none"], var.label_value_case)
- error_message = "Allowed values: `lower`, `title`, `upper`, `none`."
- }
-}
-
-variable "descriptor_formats" {
- type = any
- default = {}
- description = <<-EOT
- Describe additional descriptors to be output in the `descriptors` output map.
- Map of maps. Keys are names of descriptors. Values are maps of the form
- `{
- format = string
- labels = list(string)
- }`
- (Type is `any` so the map values can later be enhanced to provide additional options.)
- `format` is a Terraform format string to be passed to the `format()` function.
- `labels` is a list of labels, in order, to pass to `format()` function.
- Label values will be normalized before being passed to `format()` so they will be
- identical to how they appear in `id`.
- Default is `{}` (`descriptors` output will be empty).
- EOT
-}
-
-#### End of copy of cloudposse/terraform-null-label/variables.tf
diff --git a/examples/complete/README.md b/examples/complete/README.md
index 445fe17..bf38dc1 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -35,24 +35,7 @@ terraform destroy -var-file=fixtures.tfvars
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
-| [attributes](#input\_attributes) | ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,
in the order they appear in the list. New attributes are appended to the
end of the list. The elements of the list are joined by the `delimiter`
and treated as a single ID element. | `list(string)` | `[]` | no |
-| [context](#input\_context) | Single object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables as `null` to use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional\_tag\_map, which are merged. | `any` | {
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}
| no |
-| [delimiter](#input\_delimiter) | Delimiter to be used between ID elements.
Defaults to `-` (hyphen). Set to `""` to use no delimiter at all. | `string` | `null` | no |
-| [descriptor\_formats](#input\_descriptor\_formats) | Describe additional descriptors to be output in the `descriptors` output map.
Map of maps. Keys are names of descriptors. Values are maps of the form
`{
format = string
labels = list(string)
}`
(Type is `any` so the map values can later be enhanced to provide additional options.)
`format` is a Terraform format string to be passed to the `format()` function.
`labels` is a list of labels, in order, to pass to `format()` function.
Label values will be normalized before being passed to `format()` so they will be
identical to how they appear in `id`.
Default is `{}` (`descriptors` output will be empty). | `any` | `{}` | no |
-| [enabled](#input\_enabled) | Set to false to prevent the module from creating any resources | `bool` | `null` | no |
-| [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `null` | no |
-| [id\_length\_limit](#input\_id\_length\_limit) | Limit `id` to this many characters (minimum 6).
Set to `0` for unlimited length.
Set to `null` for keep the existing setting, which defaults to `0`.
Does not affect `id_full`. | `number` | `null` | no |
-| [label\_key\_case](#input\_label\_key\_case) | Controls the letter case of the `tags` keys (label names) for tags generated by this module.
Does not affect keys of tags passed in via the `tags` input.
Possible values: `lower`, `title`, `upper`.
Default value: `title`. | `string` | `null` | no |
-| [label\_order](#input\_label\_order) | The order in which the labels (ID elements) appear in the `id`.
Defaults to ["namespace", "environment", "stage", "name", "attributes"].
You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present. | `list(string)` | `null` | no |
-| [label\_value\_case](#input\_label\_value\_case) | Controls the letter case of ID elements (labels) as included in `id`,
set as tag values, and output by this module individually.
Does not affect values of tags passed in via the `tags` input.
Possible values: `lower`, `title`, `upper` and `none` (no transformation).
Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.
Default value: `lower`. | `string` | `null` | no |
-| [labels\_as\_tags](#input\_labels\_as\_tags) | Set of labels (ID elements) to include as tags in the `tags` output.
Default is to include all labels.
Tags with empty values will not be included in the `tags` output.
Set to `[]` to suppress all generated tags.
**Notes:**
The value of the `name` tag, if included, will be the `id`, not the `name`.
Unlike other `null-label` inputs, the initial setting of `labels_as_tags` cannot be
changed in later chained modules. Attempts to change it will be silently ignored. | `set(string)` | [
"default"
]
| no |
-| [name](#input\_name) | ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
This is the only ID element not also included as a `tag`.
The "name" tag is set to the full `id` string. There is no tag with the value of the `name` input. | `string` | `null` | no |
-| [namespace](#input\_namespace) | ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique | `string` | `null` | no |
-| [regex\_replace\_chars](#input\_regex\_replace\_chars) | Terraform regular expression (regex) string.
Characters matching the regex will be removed from the ID elements.
If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits. | `string` | `null` | no |
-| [stage](#input\_stage) | ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release' | `string` | `null` | no |
-| [tags](#input\_tags) | Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).
Neither the tag keys nor the tag values will be modified by this module. | `map(string)` | `{}` | no |
-| [tenant](#input\_tenant) | ID element \_(Rarely used, not included by default)\_. A customer identifier, indicating who this instance of a resource is for | `string` | `null` | no |
+| [context\_templates](#input\_context\_templates) | A map of context templates to use for generating user names | `map(string)` | n/a | yes |
## Modules
@@ -62,7 +45,6 @@ terraform destroy -var-file=fixtures.tfvars
| [terraform\_snowflake\_service\_user](#module\_terraform\_snowflake\_service\_user) | ../../ | n/a |
| [terraform\_snowflake\_user\_1](#module\_terraform\_snowflake\_user\_1) | ../../ | n/a |
| [terraform\_snowflake\_user\_2](#module\_terraform\_snowflake\_user\_2) | ../../ | n/a |
-| [this](#module\_this) | cloudposse/label/null | 0.25.0 |
## Outputs
@@ -84,6 +66,7 @@ terraform destroy -var-file=fixtures.tfvars
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.3 |
+| [context](#requirement\_context) | 0.4.0 |
| [snowflake](#requirement\_snowflake) | ~> 0.96 |
## Resources
diff --git a/examples/complete/context.tf b/examples/complete/context.tf
deleted file mode 100644
index 5e0ef88..0000000
--- a/examples/complete/context.tf
+++ /dev/null
@@ -1,279 +0,0 @@
-#
-# ONLY EDIT THIS FILE IN github.com/cloudposse/terraform-null-label
-# All other instances of this file should be a copy of that one
-#
-#
-# Copy this file from https://github.com/cloudposse/terraform-null-label/blob/master/exports/context.tf
-# and then place it in your Terraform module to automatically get
-# Cloud Posse's standard configuration inputs suitable for passing
-# to Cloud Posse modules.
-#
-# curl -sL https://raw.githubusercontent.com/cloudposse/terraform-null-label/master/exports/context.tf -o context.tf
-#
-# Modules should access the whole context as `module.this.context`
-# to get the input variables with nulls for defaults,
-# for example `context = module.this.context`,
-# and access individual variables as `module.this.`,
-# with final values filled in.
-#
-# For example, when using defaults, `module.this.context.delimiter`
-# will be null, and `module.this.delimiter` will be `-` (hyphen).
-#
-
-module "this" {
- source = "cloudposse/label/null"
- version = "0.25.0" # requires Terraform >= 0.13.0
-
- enabled = var.enabled
- namespace = var.namespace
- tenant = var.tenant
- environment = var.environment
- stage = var.stage
- name = var.name
- delimiter = var.delimiter
- attributes = var.attributes
- tags = var.tags
- additional_tag_map = var.additional_tag_map
- label_order = var.label_order
- regex_replace_chars = var.regex_replace_chars
- id_length_limit = var.id_length_limit
- label_key_case = var.label_key_case
- label_value_case = var.label_value_case
- descriptor_formats = var.descriptor_formats
- labels_as_tags = var.labels_as_tags
-
- context = var.context
-}
-
-# Copy contents of cloudposse/terraform-null-label/variables.tf here
-
-variable "context" {
- type = any
- default = {
- enabled = true
- namespace = null
- tenant = null
- environment = null
- stage = null
- name = null
- delimiter = null
- attributes = []
- tags = {}
- additional_tag_map = {}
- regex_replace_chars = null
- label_order = []
- id_length_limit = null
- label_key_case = null
- label_value_case = null
- descriptor_formats = {}
- # Note: we have to use [] instead of null for unset lists due to
- # https://github.com/hashicorp/terraform/issues/28137
- # which was not fixed until Terraform 1.0.0,
- # but we want the default to be all the labels in `label_order`
- # and we want users to be able to prevent all tag generation
- # by setting `labels_as_tags` to `[]`, so we need
- # a different sentinel to indicate "default"
- labels_as_tags = ["unset"]
- }
- description = <<-EOT
- Single object for setting entire context at once.
- See description of individual variables for details.
- Leave string and numeric variables as `null` to use default value.
- Individual variable settings (non-null) override settings in context object,
- except for attributes, tags, and additional_tag_map, which are merged.
- EOT
-
- validation {
- condition = lookup(var.context, "label_key_case", null) == null ? true : contains(["lower", "title", "upper"], var.context["label_key_case"])
- error_message = "Allowed values: `lower`, `title`, `upper`."
- }
-
- validation {
- condition = lookup(var.context, "label_value_case", null) == null ? true : contains(["lower", "title", "upper", "none"], var.context["label_value_case"])
- error_message = "Allowed values: `lower`, `title`, `upper`, `none`."
- }
-}
-
-variable "enabled" {
- type = bool
- default = null
- description = "Set to false to prevent the module from creating any resources"
-}
-
-variable "namespace" {
- type = string
- default = null
- description = "ID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique"
-}
-
-variable "tenant" {
- type = string
- default = null
- description = "ID element _(Rarely used, not included by default)_. A customer identifier, indicating who this instance of a resource is for"
-}
-
-variable "environment" {
- type = string
- default = null
- description = "ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT'"
-}
-
-variable "stage" {
- type = string
- default = null
- description = "ID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release'"
-}
-
-variable "name" {
- type = string
- default = null
- description = <<-EOT
- ID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
- This is the only ID element not also included as a `tag`.
- The "name" tag is set to the full `id` string. There is no tag with the value of the `name` input.
- EOT
-}
-
-variable "delimiter" {
- type = string
- default = null
- description = <<-EOT
- Delimiter to be used between ID elements.
- Defaults to `-` (hyphen). Set to `""` to use no delimiter at all.
- EOT
-}
-
-variable "attributes" {
- type = list(string)
- default = []
- description = <<-EOT
- ID element. Additional attributes (e.g. `workers` or `cluster`) to add to `id`,
- in the order they appear in the list. New attributes are appended to the
- end of the list. The elements of the list are joined by the `delimiter`
- and treated as a single ID element.
- EOT
-}
-
-variable "labels_as_tags" {
- type = set(string)
- default = ["default"]
- description = <<-EOT
- Set of labels (ID elements) to include as tags in the `tags` output.
- Default is to include all labels.
- Tags with empty values will not be included in the `tags` output.
- Set to `[]` to suppress all generated tags.
- **Notes:**
- The value of the `name` tag, if included, will be the `id`, not the `name`.
- Unlike other `null-label` inputs, the initial setting of `labels_as_tags` cannot be
- changed in later chained modules. Attempts to change it will be silently ignored.
- EOT
-}
-
-variable "tags" {
- type = map(string)
- default = {}
- description = <<-EOT
- Additional tags (e.g. `{'BusinessUnit': 'XYZ'}`).
- Neither the tag keys nor the tag values will be modified by this module.
- EOT
-}
-
-variable "additional_tag_map" {
- type = map(string)
- default = {}
- description = <<-EOT
- Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
- This is for some rare cases where resources want additional configuration of tags
- and therefore take a list of maps with tag key, value, and additional configuration.
- EOT
-}
-
-variable "label_order" {
- type = list(string)
- default = null
- description = <<-EOT
- The order in which the labels (ID elements) appear in the `id`.
- Defaults to ["namespace", "environment", "stage", "name", "attributes"].
- You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present.
- EOT
-}
-
-variable "regex_replace_chars" {
- type = string
- default = null
- description = <<-EOT
- Terraform regular expression (regex) string.
- Characters matching the regex will be removed from the ID elements.
- If not set, `"/[^a-zA-Z0-9-]/"` is used to remove all characters other than hyphens, letters and digits.
- EOT
-}
-
-variable "id_length_limit" {
- type = number
- default = null
- description = <<-EOT
- Limit `id` to this many characters (minimum 6).
- Set to `0` for unlimited length.
- Set to `null` for keep the existing setting, which defaults to `0`.
- Does not affect `id_full`.
- EOT
- validation {
- condition = var.id_length_limit == null ? true : var.id_length_limit >= 6 || var.id_length_limit == 0
- error_message = "The id_length_limit must be >= 6 if supplied (not null), or 0 for unlimited length."
- }
-}
-
-variable "label_key_case" {
- type = string
- default = null
- description = <<-EOT
- Controls the letter case of the `tags` keys (label names) for tags generated by this module.
- Does not affect keys of tags passed in via the `tags` input.
- Possible values: `lower`, `title`, `upper`.
- Default value: `title`.
- EOT
-
- validation {
- condition = var.label_key_case == null ? true : contains(["lower", "title", "upper"], var.label_key_case)
- error_message = "Allowed values: `lower`, `title`, `upper`."
- }
-}
-
-variable "label_value_case" {
- type = string
- default = null
- description = <<-EOT
- Controls the letter case of ID elements (labels) as included in `id`,
- set as tag values, and output by this module individually.
- Does not affect values of tags passed in via the `tags` input.
- Possible values: `lower`, `title`, `upper` and `none` (no transformation).
- Set this to `title` and set `delimiter` to `""` to yield Pascal Case IDs.
- Default value: `lower`.
- EOT
-
- validation {
- condition = var.label_value_case == null ? true : contains(["lower", "title", "upper", "none"], var.label_value_case)
- error_message = "Allowed values: `lower`, `title`, `upper`, `none`."
- }
-}
-
-variable "descriptor_formats" {
- type = any
- default = {}
- description = <<-EOT
- Describe additional descriptors to be output in the `descriptors` output map.
- Map of maps. Keys are names of descriptors. Values are maps of the form
- `{
- format = string
- labels = list(string)
- }`
- (Type is `any` so the map values can later be enhanced to provide additional options.)
- `format` is a Terraform format string to be passed to the `format()` function.
- `labels` is a list of labels, in order, to pass to `format()` function.
- Label values will be normalized before being passed to `format()` so they will be
- identical to how they appear in `id`.
- Default is `{}` (`descriptors` output will be empty).
- EOT
-}
-
-#### End of copy of cloudposse/terraform-null-label/variables.tf
diff --git a/examples/complete/fixtures.tfvars b/examples/complete/fixtures.tfvars
index 5b289a0..dad1083 100644
--- a/examples/complete/fixtures.tfvars
+++ b/examples/complete/fixtures.tfvars
@@ -1,10 +1,4 @@
-descriptor_formats = {
- snowflake-user = {
- labels = ["name"]
- format = "%v"
- }
-}
-
-tags = {
- Terraform = "True"
+context_templates = {
+ snowflake-user = "{{.environment}}_{{.name}}"
+ snowflake-service-user = "{{.environment}}_{{.project}}_{{.name}}_svc"
}
diff --git a/examples/complete/main.tf b/examples/complete/main.tf
index e5775e0..a7441c2 100644
--- a/examples/complete/main.tf
+++ b/examples/complete/main.tf
@@ -3,8 +3,8 @@ resource "snowflake_account_role" "user_role" {
}
module "terraform_snowflake_user_1" {
- source = "../../"
- context = module.this.context
+ source = "../../"
+
name = "snowflake_user_1"
comment = "Example Snowflake User"
@@ -28,9 +28,10 @@ module "terraform_snowflake_user_1" {
}
module "terraform_snowflake_user_2" {
- source = "../../"
- context = module.this.context
- name = "snowflake_user_2"
+ source = "../../"
+ name = "snowflake_user_2"
+ context_templates = var.context_templates
+
type = "PERSON"
generate_rsa_key = true
generate_password = true
@@ -54,10 +55,16 @@ module "terraform_snowflake_user_2" {
}
module "terraform_snowflake_service_user" {
- source = "../../"
- context = module.this.context
- type = "SERVICE"
- name = "service_user"
+ source = "../../"
+ type = "SERVICE"
+ name = "service_user"
+ context_templates = var.context_templates
+ name_scheme = {
+ context_template_name = "snowflake-service-user"
+ extra_values = {
+ project = "project"
+ }
+ }
comment = "Example Snowflake Service User"
generate_rsa_key = true
@@ -70,10 +77,16 @@ module "terraform_snowflake_service_user" {
}
module "terraform_snowflake_legacy_service_user" {
- source = "../../"
- context = module.this.context
- type = "LEGACY_SERVICE"
- name = "legacy_service_user"
+ source = "../../"
+ type = "LEGACY_SERVICE"
+ name = "legacy_service_user"
+ name_scheme = {
+ properties = ["environment", "name", "stage", "project"]
+ delimiter = "_"
+ extra_values = {
+ project = "project"
+ }
+ }
generate_password = true
query_tag = "LEGACY_SERVICE_USER"
diff --git a/examples/complete/providers.tf b/examples/complete/providers.tf
index d343f0d..b448148 100644
--- a/examples/complete/providers.tf
+++ b/examples/complete/providers.tf
@@ -1 +1,18 @@
provider "snowflake" {}
+
+provider "context" {
+ properties = {
+ "environment" = {}
+ "name" = { required = true }
+ "Terraform" = {}
+
+ }
+
+ delimiter = "_"
+
+ values = {
+ environment = "dev"
+ stage = "snow"
+ "Terraform" = true
+ }
+}
diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf
new file mode 100644
index 0000000..45dbcd2
--- /dev/null
+++ b/examples/complete/variables.tf
@@ -0,0 +1,4 @@
+variable "context_templates" {
+ description = "A map of context templates to use for generating user names"
+ type = map(string)
+}
diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf
index 015f449..49174f1 100644
--- a/examples/complete/versions.tf
+++ b/examples/complete/versions.tf
@@ -6,5 +6,9 @@ terraform {
source = "Snowflake-Labs/snowflake"
version = "~> 0.96"
}
+ context = {
+ source = "cloudposse/context"
+ version = "0.4.0"
+ }
}
}
diff --git a/examples/simple/README.md b/examples/simple/README.md
index 21e7576..2334893 100644
--- a/examples/simple/README.md
+++ b/examples/simple/README.md
@@ -57,6 +57,7 @@ No providers.
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.3 |
+| [context](#requirement\_context) | >=0.4.0 |
| [snowflake](#requirement\_snowflake) | ~> 0.96 |
## Resources
diff --git a/examples/simple/providers.tf b/examples/simple/providers.tf
index d343f0d..e78f1fa 100644
--- a/examples/simple/providers.tf
+++ b/examples/simple/providers.tf
@@ -1 +1,3 @@
provider "snowflake" {}
+
+provider "context" {}
diff --git a/examples/simple/versions.tf b/examples/simple/versions.tf
index 015f449..7c5e2a8 100644
--- a/examples/simple/versions.tf
+++ b/examples/simple/versions.tf
@@ -6,5 +6,9 @@ terraform {
source = "Snowflake-Labs/snowflake"
version = "~> 0.96"
}
+ context = {
+ source = "cloudposse/context"
+ version = ">=0.4.0"
+ }
}
}
diff --git a/locals.tf b/locals.tf
index 682afe8..5a1e5b2 100644
--- a/locals.tf
+++ b/locals.tf
@@ -1,11 +1,6 @@
locals {
- name_from_descriptor = module.user_label.enabled ? trim(replace(
- lookup(module.user_label.descriptors, var.descriptor_name, module.user_label.id), "/${module.user_label.delimiter}${module.user_label.delimiter}+/", module.user_label.delimiter
- ), module.user_label.delimiter) : null
-
- rsa_public_key = var.generate_rsa_key ? join("", split("\n", trim(one(resource.tls_private_key.this[*].public_key_pem), "- \n BEGIN END PUBLIC KEY"))) : var.rsa_public_key
- generate_password = module.this.enabled && var.generate_password
- generate_rsa_key = module.this.enabled && var.generate_rsa_key
+ rsa_public_key = var.generate_rsa_key ? join("", split("\n", trim(one(resource.tls_private_key.this[*].public_key_pem), "- \n BEGIN END PUBLIC KEY"))) : var.rsa_public_key
+ context_template = lookup(var.context_templates, var.name_scheme.context_template_name, null)
snowflake_user = var.type == "SERVICE" ? one(snowflake_service_user.this[*]) : var.type == "LEGACY_SERVICE" ? one(snowflake_legacy_service_user.this[*]) : var.type == "PERSON" && var.ignore_changes_on_defaults ? one(snowflake_user.defaults_not_enforced[*]) : one(snowflake_user.this[*])
}
diff --git a/main.tf b/main.tf
index c945cec..f8ce96c 100644
--- a/main.tf
+++ b/main.tf
@@ -1,22 +1,25 @@
-module "user_label" {
- source = "cloudposse/label/null"
- version = "0.25.0"
- context = module.this.context
-
- delimiter = coalesce(module.this.context.delimiter, "_")
- regex_replace_chars = coalesce(module.this.context.regex_replace_chars, "/[^_a-zA-Z0-9]/")
- label_value_case = coalesce(module.this.context.label_value_case, "upper")
+data "context_label" "this" {
+ delimiter = local.context_template == null ? var.name_scheme.delimiter : null
+ properties = local.context_template == null ? var.name_scheme.properties : null
+ template = local.context_template
+
+ replace_chars_regex = var.name_scheme.replace_chars_regex
+
+ values = merge(
+ var.name_scheme.extra_values,
+ { name = var.name }
+ )
}
resource "tls_private_key" "this" {
- count = module.this.enabled && local.generate_rsa_key ? 1 : 0
+ count = var.generate_rsa_key ? 1 : 0
algorithm = "RSA"
rsa_bits = 4096
}
resource "random_password" "this" {
- count = module.this.enabled && local.generate_password ? 1 : 0
+ count = var.generate_password ? 1 : 0
length = 36
special = true
@@ -24,15 +27,16 @@ resource "random_password" "this" {
}
resource "snowflake_user" "this" {
- count = module.this.enabled && !var.ignore_changes_on_defaults && upper(var.type) == "PERSON" ? 1 : 0
+ count = !var.ignore_changes_on_defaults && upper(var.type) == "PERSON" ? 1 : 0
- name = local.name_from_descriptor
+ name = data.context_label.this.rendered
login_name = var.login_name
display_name = var.display_name
comment = var.comment
password = var.generate_password ? one(random_password.this[*].result) : null
must_change_password = var.must_change_password
+ disabled = var.disabled
disable_mfa = var.disable_mfa
email = var.email
@@ -58,15 +62,16 @@ resource "snowflake_user" "this" {
}
resource "snowflake_user" "defaults_not_enforced" {
- count = module.this.enabled && var.ignore_changes_on_defaults && upper(var.type) == "PERSON" ? 1 : 0
+ count = var.ignore_changes_on_defaults && upper(var.type) == "PERSON" ? 1 : 0
- name = local.name_from_descriptor
+ name = data.context_label.this.rendered
login_name = var.login_name
display_name = var.display_name
comment = var.comment
password = var.generate_password ? one(random_password.this[*].result) : null
must_change_password = var.must_change_password
+ disabled = var.disabled
disable_mfa = var.disable_mfa
email = var.email
@@ -100,14 +105,15 @@ resource "snowflake_user" "defaults_not_enforced" {
}
resource "snowflake_service_user" "this" {
- count = module.this.enabled && upper(var.type) == "SERVICE" ? 1 : 0
+ count = upper(var.type) == "SERVICE" ? 1 : 0
- name = local.name_from_descriptor
+ name = data.context_label.this.rendered
login_name = var.login_name
display_name = var.display_name
- comment = var.comment
- email = var.email
+ comment = var.comment
+ email = var.email
+ disabled = var.disabled
default_warehouse = var.default_warehouse
default_secondary_roles_option = var.default_secondary_roles_option
@@ -127,11 +133,12 @@ resource "snowflake_service_user" "this" {
}
resource "snowflake_legacy_service_user" "this" {
- count = module.this.enabled && upper(var.type) == "LEGACY_SERVICE" ? 1 : 0
+ count = upper(var.type) == "LEGACY_SERVICE" ? 1 : 0
- name = local.name_from_descriptor
+ name = data.context_label.this.rendered
login_name = var.login_name
display_name = var.display_name
+ disabled = var.disabled
password = var.generate_password ? one(random_password.this[*].result) : null
must_change_password = var.must_change_password
@@ -154,7 +161,7 @@ resource "snowflake_legacy_service_user" "this" {
}
resource "snowflake_grant_account_role" "default_role" {
- count = module.this.enabled && var.grant_default_roles && var.default_role != null ? 1 : 0
+ count = var.grant_default_roles && var.default_role != null ? 1 : 0
user_name = one(local.snowflake_user[*].name)
role_name = var.default_role
diff --git a/variables.tf b/variables.tf
index 8df28af..addb2af 100644
--- a/variables.tf
+++ b/variables.tf
@@ -1,3 +1,8 @@
+variable "name" {
+ description = "Name of the resource"
+ type = string
+}
+
variable "type" {
description = "Type of the user. Valid values are PERSON, SERVICE, LEGACY_SERVICE"
type = string
@@ -108,12 +113,6 @@ variable "generate_rsa_key" {
default = false
}
-variable "descriptor_name" {
- description = "Name of the descriptor used to form a Snowflake User name"
- type = string
- default = "snowflake-user"
-}
-
variable "generate_password" {
description = "Generate a random password using Terraform"
type = bool
@@ -183,3 +182,34 @@ variable "disable_mfa" {
type = bool
default = false
}
+
+variable "disabled" {
+ description = "Specifies whether the user is disabled, which prevents logging in and aborts all the currently-running queries for the user."
+ type = bool
+ default = false
+}
+
+variable "name_scheme" {
+ description = <