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

snowflake_sequence #509

Closed
tannon5d opened this issue Mar 31, 2021 · 1 comment
Closed

snowflake_sequence #509

tannon5d opened this issue Mar 31, 2021 · 1 comment
Labels
feature-request Used to mark issues with provider's missing functionalities

Comments

@tannon5d
Copy link

Is your feature request related to a problem? Please describe.

We have a couple of sequences that can't be deployed by Terraform. Neither can tables using sequences for columns.

Describe the solution you'd like

Something like:

resource snowflake_sequence sequence {
  database = "dbname"
  schema   = "testschema"
  name     = "testsequence"
  comment  = "A sequence."
  initial_value = 1
  sequence_interval = 1
}

resource snowflake_table table {
  database = "dbname"
  schema   = "testschema"
  name     = "testtable"
  comment  = "A table."
  owner    = "me"

  column {
    name = "id"
    type = "int"
    default = "dbname.testschema.testsequence.nextval"
  }
}

Describe alternatives you've considered

ATM our sequences and tables referencing sequences are not source controlled.

Additional context

N/A

@tannon5d tannon5d added the feature-request Used to mark issues with provider's missing functionalities label Mar 31, 2021
dfedde pushed a commit to rxrevu/terraform-provider-snowflake that referenced this issue Jun 18, 2021
dfedde pushed a commit to rxrevu/terraform-provider-snowflake that referenced this issue Jun 18, 2021
dfedde pushed a commit to rxrevu/terraform-provider-snowflake that referenced this issue Jun 18, 2021
dfedde pushed a commit to rxrevu/terraform-provider-snowflake that referenced this issue Jun 22, 2021
dfedde pushed a commit to rxrevu/terraform-provider-snowflake that referenced this issue Jun 22, 2021
@sfc-gh-asawicki
Copy link
Collaborator

We are closing this issue as part of a cleanup described in announcement. If you believe that the issue is still valid in v0.89.0, please open a new ticket.

@sfc-gh-asawicki sfc-gh-asawicki closed this as not planned Won't fix, can't repro, duplicate, stale Apr 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request Used to mark issues with provider's missing functionalities
Projects
None yet
Development

No branches or pull requests

2 participants