terraform-provider-oci icon indicating copy to clipboard operation
terraform-provider-oci copied to clipboard

Resource for oci_resourcemanager_stack

Open hillnicholas opened this issue 3 years ago • 0 comments

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Create an oci_resourcemanager_stack resource to create and destroy Resource Manager stacks. A datasource is already available with the latest OCI provider.

New or Affected Resource(s)

oci_resourcemanager_stack

Potential Terraform Configuration

# Copy-paste any Terraform configurations for how the requested feature may be used. 
resource oci_resourcemanager_stack mystack { 
  compartment_id = var.compartment_id
  display_name      = "mystack"
  config_source     = {
    config_source_type  = "ZIP_UPLOAD"
    working_directory     = "./my_project"
  } 
}

References

Documentation for Resource Manager as a datasource: https://registry.terraform.io/providers/oracle/oci/latest/docs/data-sources/resourcemanager_stack

hillnicholas avatar Mar 17 '22 17:03 hillnicholas