IBM-Cloud / terraform-provider-ibm

https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs
Mozilla Public License 2.0
341 stars 667 forks source link

Expecting valid examples for content catalog similar to testcase configs in registry docs #3593

Open kavya498 opened 2 years ago

kavya498 commented 2 years ago

Community Note

New or Affected Resource(s) or Datasource(s)

Description

We expect working examples and avoid using placeholder

resource "ibm_cm_catalog" "cm_catalog" {
  label = "placeholder"
  short_description = "placeholder"
}

Retrieve id from dependant resources

resource "ibm_cm_catalog" "cm_catalog" {
  label = "placeholder"
  short_description = "placeholder"
}
resource "ibm_cm_offering" "cm_offering" {
  catalog_id =ibm_cm_catalog.cm_catalog.id
  label = "placeholder"
  tags = [ "placeholder" ]
} 

References

https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/cm_offering

kavya498 commented 2 years ago

@JonWoodlief , can you please have a look at this?