kristofer-atlas commented on code in PR #285:
URL:
https://github.com/apache/cloudstack-terraform-provider/pull/285#discussion_r2914738909
##########
tests/comprehensive/main.tf:
##########
@@ -0,0 +1,330 @@
+# Test Infrastructure for CloudStack Terraform Provider Verification
+# This tests all claimed provider capabilities and limitations
+
+provider "cloudstack" {
+ # Using environment variables: CLOUDSTACK_API_URL, CLOUDSTACK_API_KEY,
CLOUDSTACK_SECRET_KEY
+}
+
+# Generate unique test identifier
+locals {
+ test_prefix = "tf-test"
+}
Review Comment:
Moot — the entire `tests/` directory has been removed in 744dbe8.
##########
tests/comprehensive/main.tf:
##########
@@ -0,0 +1,330 @@
+# Test Infrastructure for CloudStack Terraform Provider Verification
+# This tests all claimed provider capabilities and limitations
+
+provider "cloudstack" {
+ # Using environment variables: CLOUDSTACK_API_URL, CLOUDSTACK_API_KEY,
CLOUDSTACK_SECRET_KEY
+}
+
+# Generate unique test identifier
+locals {
+ test_prefix = "tf-test"
+}
+
+# ============================================
+# TEST 1: SSH Keypair (Tests: missing Update function)
+# ============================================
+
+resource "cloudstack_ssh_keypair" "test" {
+ name = "${local.test_prefix}-keypair"
+ public_key = file("~/.ssh/id_rsa.pub")
+}
Review Comment:
Moot — the entire `tests/` directory has been removed in 744dbe8.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]