mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 14:24:39 +00:00
cd1b613352
* Update AWS SDK to use PCA features. * Add AWS PCA provider * Add plumbing for config, config validation tests, add test for inheriting existing CA resources created by user * Unparallel the tests so we don't exhaust PCA limits * Merge updates * More aggressive polling; rate limit pass through on sign; Timeout on Sign and CA create * Add AWS PCA docs * Fix Vault doc typo too * Doc typo * Apply suggestions from code review Co-Authored-By: R.B. Boyer <rb@hashicorp.com> Co-Authored-By: kaitlincarter-hc <43049322+kaitlincarter-hc@users.noreply.github.com> * Doc fixes; tests for erroring if State is modified via API * More review cleanup * Uncomment tests! * Minor suggested clean ups
25 lines
565 B
Go
25 lines
565 B
Go
package ini
|
|
|
|
// newExpression will return an expression AST.
|
|
// Expr represents an expression
|
|
//
|
|
// grammar:
|
|
// expr -> string | number
|
|
func newExpression(tok Token) AST {
|
|
return newASTWithRootToken(ASTKindExpr, tok)
|
|
}
|
|
|
|
func newEqualExpr(left AST, tok Token) AST {
|
|
return newASTWithRootToken(ASTKindEqualExpr, tok, left)
|
|
}
|
|
|
|
// EqualExprKey will return a LHS value in the equal expr
|
|
func EqualExprKey(ast AST) string {
|
|
children := ast.GetChildren()
|
|
if len(children) == 0 || ast.Kind != ASTKindEqualExpr {
|
|
return ""
|
|
}
|
|
|
|
return string(children[0].Root.Raw())
|
|
}
|