forked from hashicorp/terraform-provider-google-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade DCL to 1.67 (#10838) (hashicorp#7442)
[upstream:2c721b59725c7f9cc5a164d92e8418f397bbf46f] Signed-off-by: Modular Magician <[email protected]>
- Loading branch information
1 parent
ebd2e1f
commit 1a3b095
Showing
5 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -275,6 +275,12 @@ func ClouddeployTargetExecutionConfigsSchema() *schema.Resource { | |
Description: "Optional. Google service account to use for execution. If unspecified, the project execution service account ([email protected]) is used.", | ||
}, | ||
|
||
"verbose": { | ||
Type: schema.TypeBool, | ||
Optional: true, | ||
Description: "Optional. If true, additional logging will be enabled when running builds in this execution environment.", | ||
}, | ||
|
||
"worker_pool": { | ||
Type: schema.TypeString, | ||
Optional: true, | ||
|
@@ -712,6 +718,7 @@ func expandClouddeployTargetExecutionConfigs(o interface{}) *clouddeploy.TargetE | |
ArtifactStorage: dcl.StringOrNil(obj["artifact_storage"].(string)), | ||
ExecutionTimeout: dcl.StringOrNil(obj["execution_timeout"].(string)), | ||
ServiceAccount: dcl.StringOrNil(obj["service_account"].(string)), | ||
Verbose: dcl.Bool(obj["verbose"].(bool)), | ||
WorkerPool: dcl.String(obj["worker_pool"].(string)), | ||
} | ||
} | ||
|
@@ -739,6 +746,7 @@ func flattenClouddeployTargetExecutionConfigs(obj *clouddeploy.TargetExecutionCo | |
"artifact_storage": obj.ArtifactStorage, | ||
"execution_timeout": obj.ExecutionTimeout, | ||
"service_account": obj.ServiceAccount, | ||
"verbose": obj.Verbose, | ||
"worker_pool": obj.WorkerPool, | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters