-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
2,981 additions
and
112 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
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2022 Mineiros GmbH | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package genhcl_test | ||
|
||
import "github.com/mineiros-io/terramate/test/hclwrite" | ||
|
||
// useful function aliases to build HCL documents | ||
|
||
func hcldoc(builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildHCL(builders...) | ||
} | ||
|
||
func generateHCL(builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildBlock("generate_hcl", builders...) | ||
} | ||
|
||
func block(name string, builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildBlock(name, builders...) | ||
} | ||
|
||
func terraform(builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildBlock("terraform", builders...) | ||
} | ||
|
||
func globals(builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildBlock("globals", builders...) | ||
} | ||
|
||
func content(builders ...hclwrite.BlockBuilder) *hclwrite.Block { | ||
return hclwrite.BuildBlock("content", builders...) | ||
} | ||
|
||
func labels(labels ...string) hclwrite.BlockBuilder { | ||
return hclwrite.Labels(labels...) | ||
} | ||
|
||
func expr(name string, expr string) hclwrite.BlockBuilder { | ||
return hclwrite.Expression(name, expr) | ||
} | ||
|
||
func str(name string, val string) hclwrite.BlockBuilder { | ||
return hclwrite.String(name, val) | ||
} | ||
|
||
func number(name string, val int64) hclwrite.BlockBuilder { | ||
return hclwrite.NumberInt(name, val) | ||
} | ||
|
||
func boolean(name string, val bool) hclwrite.BlockBuilder { | ||
return hclwrite.Boolean(name, val) | ||
} |
Oops, something went wrong.