Skip to content
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

Added support for volume_prototypes on ibm_is_instance resource #5777

Merged
merged 2 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ibm/acctest/acctest.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ var (
ISResourceCrn string
ISCIDR string
ISCIDR2 string
ISIPV4Address string
ISPublicSSHKeyFilePath string
ISPrivateSSHKeyFilePath string
ISAddressPrefixCIDR string
Expand Down Expand Up @@ -764,6 +765,11 @@ func init() {
ISCIDR2 = "10.240.64.0/24"
fmt.Println("[INFO] Set the environment variable SL_CIDR_2 for testing ibm_is_subnet else it is set to default value '10.240.64.0/24'")
}
ISIPV4Address = os.Getenv("IS_IPV4_ADDRESS")
if ISIPV4Address == "" {
ISIPV4Address = "10.240.0.6"
fmt.Println("[INFO] Set the environment variable IS_IPV4_ADDRESS for testing ibm_is_instance else it is set to default value '10.240.0.6'")
}

AccountId = os.Getenv("IS_ACCOUNT_ID")
if AccountId == "" {
Expand Down
Loading
Loading