Discussions
Categories
- 197.2K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 555 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.3K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
EBS on OCI

Hi
I am trying to complete the Lift and Shift On-Premises EBS to OCI Workshop.
- Lab 2: Oracle E-Business Suite Cloud Manager Deployment and Configuration
- Step 10 - Run stack fails with the following error in the log file:
Error: Error applying plan: 2 errors occurred: * oci_core_instance.ebscm_instance: 1 error occurred: * oci_core_instance.ebscm_instance: Service error:NotAuthorizedOrNotFound. shape VM.Standard2.2 not found. http status code: 404. Opc request id: b270ea6d5f3706de9abd69335ca2dc42/DB19F9E66FB5F2B88541D074E1D044FF/7C40E5064EFFA71E2FB90D67FA6336E9 * oci_load_balancer.ebscm_lbaas: 1 error occurred: * oci_load_balancer.ebscm_lbaas: Service error:LimitExceeded. The following service limits were exceeded: lb-100mbps-count. Request a service limit increase from the service limits page in the console. . http status code: 400. Opc request id: e88fa177deb1bda8a996059335e5320f/A060D550B8A492E814194A7B593224EA/CA99D4624075506E6D6DF675D5980423 Terraform does not automatically rollback in the face of errors.
Previously, I had tried the earlier version of the HOL This also failed at the LBaaS stage as the script was expecting a numerical response, but only a "flexible" option was available in the list (environment).
To get around that issue, I manually created the LBaaS and then allowed the configure.pl script to reconfigure it. This worked, but I could not access the Oracle EBS Cloud Manager application afterwards as the web site toggled between the two pages without allowing me to access either of them.
I then found this later version of the HOL, but the stack has failed to create all the required resources.
The terraform script - default-setup.tf is requesting a LBaaSs with a shap of "100Mbps", but I suspect that environment/tenancy can only create one with a "flexible" shape.
resource "oci_load_balancer" "ebscm_lbaas" {
shape = "100Mbps"
compartment_id = "${var.tenancy_admin_setup ? join("", oci_identity_compartment.compartment1.*.id) : var.compartment_ocid}"
subnet_ids = ["${oci_core_subnet.lbaas_subnet.id}"]
display_name = "${var.res_suffix}_ebscm_lbaas"
is_private = "false"
}
For this lab I cannot create/reconfigure the LBaaS.
I tried the process again with a VM.Standard.2.1 EBS Cloud Manager Shape as the previous execution had reported that the VM.Standard2.2 not found - however the same error recurred.
* oci_core_instance.ebscm_instance: 1 error occurred: * oci_core_instance.ebscm_instance: Service error:NotAuthorizedOrNotFound. shape VM.Standard2.1 not found. http status code: 404. Opc request id: 5a6d909b6e789bf615ddfff07a6ac2ae/BA74A02CFB7AB4A7E00FA6E851328EA1/CB0EDF46E2F6418AF6073F9D1D188422 * oci_load_balancer.ebscm_lbaas: 1 error occurred: * oci_load_balancer.ebscm_lbaas: Service error:LimitExceeded. The following service limits were exceeded: lb-100mbps-count. Request a service limit increase from the service limits page in the console. . http status code: 400. Opc request id: 11acab5633e6d2faf16f43f43c527aba/744E66227EEC1BC39B85F908B8C326A5/603D226B54E39DC8B5DB4F634064ED32
Is there an issue with my tenancy or does the terraform script need to be amended?
Help please
Thanks