Skip to content

Commit

Permalink
terraform fmt: automated action
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and github-actions[bot] committed Apr 25, 2024
1 parent 7e3d2a8 commit 3468576
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ provider "snowflake" {}

resource "snowflake_oauth_integration" "this" {
name = var.name
comment = var.comment
comment = var.comment
oauth_client = var.oauth_client
enabled = var.enabled
oauth_issue_refresh_tokens = var.oauth_issue_refresh_tokens
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output "oauth_client_id" {
value = snowflake_oauth_integration.this.oauth_client_id

Check failure on line 2 in outputs.tf

View workflow job for this annotation

GitHub Actions / Validate Terraform module

Unsupported attribute

}
84 changes: 42 additions & 42 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
variable "name" {
type = string
description = "The name of the OAuth integration."
}

variable "oauth_client" {
type = string
description = "The OAuth client."
}

variable "enabled" {
type = bool
description = "Flag to enable or disable the resource."
default = true
}

variable "oauth_issue_refresh_tokens" {
type = bool
description = "Flag to determine if refresh tokens should be issued."
default = true
}

variable "oauth_refresh_token_validity" {
type = number
description = "The validity period of the OAuth refresh token."
default = 3600
}

variable "blocked_roles_list" {
type = list(string)
description = "List of blocked roles."
default = ["SYSADMIN"]
}

variable "oauth_redirect_uri" {
type = string
default = "https://example.com/callback"
}

variable "comment" {
type = string
description = "The value of the comment field for the OAuth integration."
}
type = string
description = "The name of the OAuth integration."
}

variable "oauth_client" {
type = string
description = "The OAuth client."
}

variable "enabled" {
type = bool
description = "Flag to enable or disable the resource."
default = true
}

variable "oauth_issue_refresh_tokens" {
type = bool
description = "Flag to determine if refresh tokens should be issued."
default = true
}

variable "oauth_refresh_token_validity" {
type = number
description = "The validity period of the OAuth refresh token."
default = 3600
}

variable "blocked_roles_list" {
type = list(string)
description = "List of blocked roles."
default = ["SYSADMIN"]
}

variable "oauth_redirect_uri" {
type = string
default = "https://example.com/callback"
}

variable "comment" {
type = string
description = "The value of the comment field for the OAuth integration."
}

# Path: outputs.tf

0 comments on commit 3468576

Please sign in to comment.