From 6d7b0496c54c47312b9a0ef527a7fe724dfc7fd6 Mon Sep 17 00:00:00 2001 From: Marcel Jacek Date: Tue, 8 Jul 2025 17:56:20 +0200 Subject: [PATCH] fix: add missing security group ID output to `security-group create` command --- internal/cmd/security-group/create/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/security-group/create/create.go b/internal/cmd/security-group/create/create.go index 5bce0c52b..1e17b9002 100644 --- a/internal/cmd/security-group/create/create.go +++ b/internal/cmd/security-group/create/create.go @@ -156,7 +156,7 @@ func outputResult(p *print.Printer, outputFormat, name string, resp iaas.Securit return nil default: - p.Outputf("Created security group %q\n", name) + p.Outputf("Created security group %q.\nSecurity Group ID %s\n", name, utils.PtrString(resp.Id)) return nil } }