-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix ROKs estimates, update golden tests, fix transit gateway estimate #157
Conversation
resource "ibm_resource_instance" "resource_instance_appconnect_ent" { | ||
name = "appconnect-ent" | ||
service = "appconnect" | ||
plan = "appconnectplanenterprise" | ||
location = "us-south" | ||
} | ||
|
||
resource "ibm_resource_instance" "resource_instance_appconnect_pro" { | ||
name = "appconnect-pro" | ||
service = "appconnect" | ||
plan = "appconnectplanprofessional" | ||
location = "us-south" | ||
} | ||
|
||
resource "ibm_resource_instance" "resource_instance_appconnect_lite" { | ||
name = "appconnect-lite" | ||
service = "appconnect" | ||
plan = "lite" | ||
location = "us-south" | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You probably would want to remove the corresponding usages in the internal/providers/terraform/ibm/testdata/resource_instance_test/resource_instance_test.usage.yml
file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you
No description provided.