mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-08 16:35:25 -04:00
Add support for Alicloud CloudSSO mode in OSS backend credential handling
This commit is contained in:
parent
2bb747222b
commit
22cf883b5c
2 changed files with 6 additions and 1 deletions
5
.changes/v1.15/ENHANCEMENTS-20260303-132330.yaml
Normal file
5
.changes/v1.15/ENHANCEMENTS-20260303-132330.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
kind: ENHANCEMENTS
|
||||
body: add Alicloud CloudSSO mode credential support for oss backend
|
||||
time: 2026-03-03T13:23:30.643274+08:00
|
||||
custom:
|
||||
Issue: "38228"
|
||||
|
|
@ -618,7 +618,7 @@ func getConfigFromProfile(d *schema.ResourceData, ProfileKey string) (interface{
|
|||
return "", nil
|
||||
}
|
||||
case "sts_token":
|
||||
if mode != "StsToken" {
|
||||
if mode != "StsToken" && mode != "CloudSSO" {
|
||||
return "", nil
|
||||
}
|
||||
case "ram_role_arn", "ram_session_name":
|
||||
|
|
|
|||
Loading…
Reference in a new issue