We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e15d7ee commit d708b5aCopy full SHA for d708b5a
terraform/auth/config.go
@@ -151,6 +151,12 @@ func (c *Config) LoadAndValidate() error {
151
ApplicationCredentialName: c.ApplicationCredentialName,
152
ApplicationCredentialSecret: c.ApplicationCredentialSecret,
153
}
154
+
155
+ // Define System Scope if enabled
156
+ if c.AuthOpts.Scope.System {
157
+ authInfo.SystemScope = "true"
158
+ }
159
160
clientOpts.AuthInfo = authInfo
161
162
0 commit comments