Skip to content

Commit

Permalink
Fix 2 for Unconfigurable Attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Barrett committed May 11, 2024
1 parent d38b85d commit 512e1e8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ No modules.
| <a name="input_database"></a> [database](#input\_database) | The name of the database. | `string` | n/a | yes |
| <a name="input_enable_multiple_grants"></a> [enable\_multiple\_grants](#input\_enable\_multiple\_grants) | A boolean that determines if multiple grants are enabled. | `bool` | `true` | no |
| <a name="input_name"></a> [name](#input\_name) | The name of the pipe. | `string` | n/a | yes |
| <a name="input_notification_channel"></a> [notification\_channel](#input\_notification\_channel) | The notification channel for the pipe. | `string` | `""` | no |
| <a name="input_on_future"></a> [on\_future](#input\_on\_future) | ... | `bool` | `null` | no |
| <a name="input_privilege"></a> [privilege](#input\_privilege) | The privilege for the grant. | `string` | `"USAGE"` | no |
| <a name="input_roles"></a> [roles](#input\_roles) | The roles for the grant. | `list(string)` | `[]` | no |
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ resource "snowflake_pipe" "this" {
auto_ingest = var.auto_ingest

aws_sns_topic_arn = var.aws_sns_topic_arn
notification_channel = var.notification_channel
}

resource "snowflake_pipe_grant" "grant" {

Check warning on line 28 in main.tf

View workflow job for this annotation

GitHub Actions / Validate Terraform module

Deprecated Resource

Check warning on line 28 in main.tf

View workflow job for this annotation

GitHub Actions / Validate Terraform module

Deprecated Resource
Expand Down
6 changes: 0 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ variable "name" {
type = string
}

variable "notification_channel" {
description = "The notification channel for the pipe."
type = string
default = ""
}

variable "on_future" {
description = "..."
type = bool
Expand Down

0 comments on commit 512e1e8

Please sign in to comment.