Skip to content

Commit a77cdf2

Browse files
authored
fix: include new limitation to README (#215)
1 parent 324e56b commit a77cdf2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ Known limitations are:
5353
- Apply twice keeps on showing changes for `ibm_code_engine_app` and `ibm_code_engine_job` terraform resource https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4719
5454
- CLI/API service binding implementation/interface is different from terraform implementation. For example, CLI or UI code engine has a support to create access secret, service credential and all bindings automatically, while `code_engine_binding_instance` terraform resource requires that access secret exists before the binding is created. The second discrepancy between implementations is that terraform `code_engine_binding_instance` terraform resource requires `prefix` while using CLI or UI `prefix` is an optional parameter. https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5229
5555
- Visibility for application can not be set. While CLI uses `--visibility=private` flag to set the visibility, terraform provider doesn't support it. https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5228
56-
- Apply twice throwns an error for `ibm_code_engine_secret` terraform resource https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5232
56+
- Apply twice throws an error for `ibm_code_engine_secret` terraform resource https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5232
57+
- Apply twice throws an error for `ibm_code_engine_app` terraform resource https://github.com/IBM-Cloud/terraform-provider-ibm/issues/6330
5758

5859
### Usage
5960

tests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.22.0
55
toolchain go1.23.3
66

77
require (
8+
github.com/gruntwork-io/terratest v0.47.2
89
github.com/stretchr/testify v1.9.0
910
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.41.4
1011
)
@@ -63,7 +64,6 @@ require (
6364
github.com/google/uuid v1.6.0 // indirect
6465
github.com/googleapis/enterprise-certificate-proxy v0.2.4 // indirect
6566
github.com/googleapis/gax-go/v2 v2.11.0 // indirect
66-
github.com/gruntwork-io/terratest v0.47.2 // indirect
6767
github.com/hashicorp/errwrap v1.1.0 // indirect
6868
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6969
github.com/hashicorp/go-getter v1.7.6 // indirect

0 commit comments

Comments
 (0)