Skip to content

Latest commit

 

History

History
81 lines (60 loc) · 1.24 KB

oci_resourcemanager_stack_tf_state.md

File metadata and controls

81 lines (60 loc) · 1.24 KB

oci_resourcemanager_stack_tf_state

back

Index

Terraform

terraform {
  required_providers {
    oci = ">= 4.21.0"
  }
}

top

Example Usage

module "oci_resourcemanager_stack_tf_state" {
  source = "./modules/oci/d/oci_resourcemanager_stack_tf_state"

  # local_path - (required) is a type of string
  local_path = null
  # stack_id - (required) is a type of string
  stack_id = null
}

top

Variables

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

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

top

Datasource

data "oci_resourcemanager_stack_tf_state" "this" {
  # local_path - (required) is a type of string
  local_path = var.local_path
  # stack_id - (required) is a type of string
  stack_id = var.stack_id
}

top

Outputs

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

output "this" {
  value = oci_resourcemanager_stack_tf_state.this
}

top