Skip to content

Latest commit

 

History

History
110 lines (85 loc) · 1.89 KB

File metadata and controls

110 lines (85 loc) · 1.89 KB

google_bigtable_table_iam_policy

back

Index

Terraform

terraform {
  required_providers {
    google-beta = ">= 3.63.0"
  }
}

top

Example Usage

module "google_bigtable_table_iam_policy" {
  source = "./modules/google-beta/r/google_bigtable_table_iam_policy"

  # instance - (required) is a type of string
  instance = null
  # policy_data - (required) is a type of string
  policy_data = null
  # project - (optional) is a type of string
  project = null
  # table - (required) is a type of string
  table = null
}

top

Variables

variable "instance" {
  description = "(required)"
  type        = string
}

variable "policy_data" {
  description = "(required)"
  type        = string
}

variable "project" {
  description = "(optional)"
  type        = string
  default     = null
}

variable "table" {
  description = "(required)"
  type        = string
}

top

Resource

resource "google_bigtable_table_iam_policy" "this" {
  # instance - (required) is a type of string
  instance = var.instance
  # policy_data - (required) is a type of string
  policy_data = var.policy_data
  # project - (optional) is a type of string
  project = var.project
  # table - (required) is a type of string
  table = var.table
}

top

Outputs

output "etag" {
  description = "returns a string"
  value       = google_bigtable_table_iam_policy.this.etag
}

output "id" {
  description = "returns a string"
  value       = google_bigtable_table_iam_policy.this.id
}

output "project" {
  description = "returns a string"
  value       = google_bigtable_table_iam_policy.this.project
}

output "this" {
  value = google_bigtable_table_iam_policy.this
}

top