Index
Overview
base64 defines base64 encoding & decoding functions, +
From c81f8b544ca8782162df636f7ccdec29a1cca154 Mon Sep 17 00:00:00 2001
From: mcuadros base64
or to make HTTP requests.
ascode is amazing
Also, AsCode has some more specif modules, like the docker
module. The
-docker modules allow you to manipulate docker image names.
load("experimental/docker", "docker")
+docker modules allow you to manipulate docker image names.load("docker", "docker")
A docker image tag can be defined using semver, instead of using the infamous
‘latest’ tag, or fixing a particular version. This allows us to be up-to-date
without breaking our deployment.
golang = docker.image("golang", "1.13.x")
diff --git a/docs/reference/base64/index.html b/docs/reference/base64/index.html
index 183d584..1ebadc7 100644
--- a/docs/reference/base64/index.html
+++ b/docs/reference/base64/index.html
@@ -1,5 +1,5 @@
encoding/base64 - AsCode - Terraform Alternative Syntax encoding/base64
Index
Overview
base64 defines base64 encoding & decoding functions,
+
encoding/base64
Index
Overview
base64 defines base64 encoding & decoding functions,
often used to represent binary as text.
Functions
def decode
decode(src,encoding="standard") string
parse base64 input, giving back the plain string representation
Arguments
name type description src
string
source string of base64-encoded text encoding
string
optional. string to set decoding dialect. allowed values are: standard,standard_raw,url,url_raw
def encode
encode(src,encoding="standard") string
return the base64 encoding of src
Arguments
name type description src
string
source string to encode to base64 encoding
string
optional. string to set encoding dialect. allowed values are: standard,standard_raw,url,url_raw
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/docs/reference/csv/index.html b/docs/reference/csv/index.html
index faf49bc..312fd25 100644
--- a/docs/reference/csv/index.html
+++ b/docs/reference/csv/index.html
@@ -1,4 +1,4 @@
encoding/csv - AsCode - Terraform Alternative Syntax encoding/csv
Index
Overview
csv reads comma-separated values files
Functions
def read_all
read_all(source, comma=",", comment="", lazy_quotes=False, trim_leading_space=False, fields_per_record=0, skip=0) [][]string
+
encoding/csv
Index
Overview
csv reads comma-separated values files
Functions
def read_all
read_all(source, comma=",", comment="", lazy_quotes=False, trim_leading_space=False, fields_per_record=0, skip=0) [][]string
read all rows from a source string, returning a list of string lists
Arguments
name type description source
string
input string of csv data comma
string
comma is the field delimiter, defaults to “,” (a comma).comma must be a valid character and must not be \r, \n,or the Unicode replacement character (0xFFFD). comment
string
comment, if not “", is the comment character. Lines beginning with thecomment character without preceding whitespace are ignored.With leading whitespace the comment character becomes part of thefield, even if trim_leading_space is True.comment must be a valid character and must not be \r, \n,or the Unicode replacement character (0xFFFD).It must also not be equal to comma. lazy_quotes
bool
If lazy_quotes is True, a quote may appear in an unquoted field anda non-doubled quote may appear in a quoted field. trim_leading_space
bool
If trim_leading_space is True, leading white space in a field is ignored.This is done even if the field delimiter, comma, is white space. fields_per_record
int
fields_per_record is the number of expected fields per record.If fields_per_record is positive, read_all requires each record tohave the given number of fields. If fields_per_record is 0, read_all sets it tothe number of fields in the first record, so that future records musthave the same field count. If fields_per_record is negative, no check ismade and records may have a variable number of fields. skip
int
number of rows to skip, omitting from returned rows
def write_all
write_all(source,comma=",") string
write all rows from source to a csv-encoded string
Arguments
name type description source
[][]string
array of arrays of strings to write to csv comma
string
comma is the field delimiter, defaults to “,” (a comma).comma must be a valid character and must not be \r, \n,or the Unicode replacement character (0xFFFD).
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/docs/reference/docker/index.html b/docs/reference/docker/index.html
new file mode 100644
index 0000000..54c1302
--- /dev/null
+++ b/docs/reference/docker/index.html
@@ -0,0 +1,5 @@
+docker - AsCode - Terraform Alternative Syntax docker
Index
Overview
The docker modules allow you to manipulate docker image names.
Functions
def image
image(image, constraint) Image
+
Returns a new Image
based on a given image and constraint.
Arguments
name type description image
string
Container image name. Eg.: ubuntu
or quay.io/prometheus/prometheus
. constraint
string
Semver contraint. Eg.: 1.2.*
Types
type Image
Represents a docker container image.
Properties
name type description name
string
Image name. Eg.: docker.io/library/fedora
domain
string
Registry domain. Eg.: docker.io
. path
string
Repository path. Eg.: library/fedora
Methods
def Image.tags
Image.tags() list
+
List of all the tags for this container image.
def Image.version
Image.version() string
+
Return the highest tag matching the image constraint.
Arguments
name type description full
bool
If true
returns the image name plus the tag. Eg.: docker.io/library/fedora:29
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/docs/reference/filepath/index.html b/docs/reference/filepath/index.html
index fe27828..c4cb861 100644
--- a/docs/reference/filepath/index.html
+++ b/docs/reference/filepath/index.html
@@ -1,5 +1,5 @@
path/filepath - AsCode - Terraform Alternative Syntax path/filepath
Index
Overview
filepath implements utility routines for manipulating filename paths in a
+
path/filepath
Index
Overview
filepath implements utility routines for manipulating filename paths in a
way compatible with the target operating system-defined file path
Functions
def abs
abs(path) string
returns an absolute representation of path. If the path is not
absolute it will be joined with the current working directory to turn
diff --git a/docs/reference/http/index.html b/docs/reference/http/index.html
index 8e67803..783083f 100644
--- a/docs/reference/http/index.html
+++ b/docs/reference/http/index.html
@@ -1,5 +1,5 @@
http - AsCode - Terraform Alternative Syntax http
Index
Overview
http defines an HTTP client implementation
Functions
def delete
delete(url,params={},headers={},body="",form_body={},json_body={},auth=()) response
+
http
Index
Overview
http defines an HTTP client implementation
Functions
def delete
delete(url,params={},headers={},body="",form_body={},json_body={},auth=()) response
perform an HTTP DELETE request, returning a response
Arguments
name type description url
string
url to request headers
dict
optional. dictionary of headers to add to request body
string
optional. raw string body to provide to the request form_body
dict
optional. dict of values that will be encoded as form data json_body
any
optional. json data to supply as a request. handy for working with JSON-API’s auth
tuple
optional. (username,password) tuple for http basic authorization
def get
get(url,params={},headers={},auth=()) response
perform an HTTP GET request, returning a response
Arguments
name type description url
string
url to request headers
dict
optional. dictionary of headers to add to request auth
tuple
optional. (username,password) tuple for http basic authorization
def options
options(url,params={},headers={},body="",form_body={},json_body={},auth=()) response
perform an HTTP OPTIONS request, returning a response
Arguments
name type description url
string
url to request headers
dict
optional. dictionary of headers to add to request body
string
optional. raw string body to provide to the request form_body
dict
optional. dict of values that will be encoded as form data json_body
any
optional. json data to supply as a request. handy for working with JSON-API’s auth
tuple
optional. (username,password) tuple for http basic authorization
def patch
patch(url,params={},headers={},body="",form_body={},json_body={},auth=()) response
diff --git a/docs/reference/index.html b/docs/reference/index.html
index 2f6369a..040237a 100644
--- a/docs/reference/index.html
+++ b/docs/reference/index.html
@@ -1,2 +1,2 @@
API Reference - AsCode - Terraform Alternative Syntax OverviewAPI Reference
built-in
builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the load
statement, and any of the functioncan be called without any prefix.
encoding/base64
base64 defines base64 encoding & decoding functions,often used to represent binary as text.
encoding/csv
csv reads comma-separated values files
encoding/json
json provides functions for working with json data
encoding/yaml
yaml provides functions for working with yaml data
http
http defines an HTTP client implementation
math
math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: https://docs.python.org/3/library/math.html
os
os provides a platform-independent interface to operating system functionality.
path/filepath
filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path
re
re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: https://docs.python.org/3/library/re.html
time
time defines time primitives for starlark
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
+
OverviewAPI Reference
built-in
builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the load
statement, and any of the functioncan be called without any prefix.
docker
The docker modules allow you to manipulate docker image names.
encoding/base64
base64 defines base64 encoding & decoding functions,often used to represent binary as text.
encoding/csv
csv reads comma-separated values files
encoding/json
json provides functions for working with json data
encoding/yaml
yaml provides functions for working with yaml data
http
http defines an HTTP client implementation
math
math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: https://docs.python.org/3/library/math.html
os
os provides a platform-independent interface to operating system functionality.
path/filepath
filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path
re
re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: https://docs.python.org/3/library/re.html
time
time defines time primitives for starlark
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/docs/reference/index.xml b/docs/reference/index.xml
index 78a7f01..ca47dfa 100644
--- a/docs/reference/index.xml
+++ b/docs/reference/index.xml
@@ -1 +1 @@
-API Reference on AsCode - Terraform Alternative Syntax https://ascode.run/docs/reference/Recent content in API Reference on AsCode - Terraform Alternative Syntax Hugo -- gohugo.io en-us built-in https://ascode.run/docs/reference/types/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/types/ builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the <code>load</code> statement, and any of the functioncan be called without any prefix. encoding/base64 https://ascode.run/docs/reference/base64/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/base64/ base64 defines base64 encoding & decoding functions,often used to represent binary as text. encoding/csv https://ascode.run/docs/reference/csv/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/csv/ csv reads comma-separated values files encoding/json https://ascode.run/docs/reference/json/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/json/ json provides functions for working with json data encoding/yaml https://ascode.run/docs/reference/yaml/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/yaml/ yaml provides functions for working with yaml data http https://ascode.run/docs/reference/http/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/http/ http defines an HTTP client implementation math https://ascode.run/docs/reference/math/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/math/ math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: <a href="https://docs.python.org/3/library/math.html">https://docs.python.org/3/library/math.html</a> os https://ascode.run/docs/reference/os/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/os/ os provides a platform-independent interface to operating system functionality. path/filepath https://ascode.run/docs/reference/filepath/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/filepath/ filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path re https://ascode.run/docs/reference/re/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/re/ re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: <a href="https://docs.python.org/3/library/re.html">https://docs.python.org/3/library/re.html</a> time https://ascode.run/docs/reference/time/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/time/ time defines time primitives for starlark
\ No newline at end of file
+API Reference on AsCode - Terraform Alternative Syntax https://ascode.run/docs/reference/Recent content in API Reference on AsCode - Terraform Alternative Syntax Hugo -- gohugo.io en-us built-in https://ascode.run/docs/reference/types/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/types/ builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the <code>load</code> statement, and any of the functioncan be called without any prefix. docker https://ascode.run/docs/reference/docker/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/docker/ The docker modules allow you to manipulate docker image names. encoding/base64 https://ascode.run/docs/reference/base64/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/base64/ base64 defines base64 encoding & decoding functions,often used to represent binary as text. encoding/csv https://ascode.run/docs/reference/csv/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/csv/ csv reads comma-separated values files encoding/json https://ascode.run/docs/reference/json/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/json/ json provides functions for working with json data encoding/yaml https://ascode.run/docs/reference/yaml/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/yaml/ yaml provides functions for working with yaml data http https://ascode.run/docs/reference/http/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/http/ http defines an HTTP client implementation math https://ascode.run/docs/reference/math/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/math/ math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: <a href="https://docs.python.org/3/library/math.html">https://docs.python.org/3/library/math.html</a> os https://ascode.run/docs/reference/os/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/os/ os provides a platform-independent interface to operating system functionality. path/filepath https://ascode.run/docs/reference/filepath/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/filepath/ filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path re https://ascode.run/docs/reference/re/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/re/ re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: <a href="https://docs.python.org/3/library/re.html">https://docs.python.org/3/library/re.html</a> time https://ascode.run/docs/reference/time/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/time/ time defines time primitives for starlark
\ No newline at end of file
diff --git a/docs/reference/json/index.html b/docs/reference/json/index.html
index da6ca35..9efcae1 100644
--- a/docs/reference/json/index.html
+++ b/docs/reference/json/index.html
@@ -1,4 +1,4 @@
encoding/json - AsCode - Terraform Alternative Syntax encoding/json
Index
Overview
json provides functions for working with json data
Functions
def dumps
dumps(obj) string
+
encoding/json
Index
Overview
json provides functions for working with json data
Functions
def dumps
dumps(obj) string
serialize obj to a JSON string
Arguments
name type description obj
object
input object
def loads
loads(source) object
read a source JSON string to a starlark object
Arguments
name type description source
string
input string of json data
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/docs/reference/math/index.html b/docs/reference/math/index.html
index dd1f8b6..a5543a8 100644
--- a/docs/reference/math/index.html
+++ b/docs/reference/math/index.html
@@ -1,5 +1,5 @@
math - AsCode - Terraform Alternative Syntax math
Index
Overview
math defines mathematical functions, it’s intended to be a drop-in
+
math
Index
Overview
math defines mathematical functions, it’s intended to be a drop-in
subset of python’s math module for starlark: https://docs.python.org/3/library/math.html
Functions
def acos
acos(x)
Return the arc cosine of x, in radians.
def acosh
acosh(x)
Return the inverse hyperbolic cosine of x.
def asin
asin(x)
diff --git a/docs/reference/os/index.html b/docs/reference/os/index.html
index d49377a..65a3e3d 100644
--- a/docs/reference/os/index.html
+++ b/docs/reference/os/index.html
@@ -1,5 +1,5 @@
os - AsCode - Terraform Alternative Syntax os
Index
Overview
os provides a platform-independent interface to operating system functionality.
Functions
def chdir
chdir(dir)
+
os
Index
Overview
os provides a platform-independent interface to operating system functionality.
Functions
def chdir
chdir(dir)
changes the current working directory to the named directory.
Arguments
name type description dir
string
target dir
def getenv
getenv(key) dir
retrieves the value of the environment variable named by the key.
Arguments
name type description key
string
name of the environment variable
def getwd
getwd() dir
returns a rooted path name corresponding to the current directory.
def mkdir
mkdir(name, perms=0o777)
diff --git a/docs/reference/re/index.html b/docs/reference/re/index.html
index c9d8ade..19c84bd 100644
--- a/docs/reference/re/index.html
+++ b/docs/reference/re/index.html
@@ -1,5 +1,5 @@
re - AsCode - Terraform Alternative Syntax re
Index
Overview
re defines regular expression functions, it’s intended to be a drop-in
+
re
Index
Overview
re defines regular expression functions, it’s intended to be a drop-in
subset of python’s re module for starlark: https://docs.python.org/3/library/re.html
Functions
def findall
findall(pattern, text, flags=0)
Returns all non-overlapping matches of pattern in string, as a list of strings.
The string is scanned left-to-right, and matches are returned in the order found.
diff --git a/docs/reference/time/index.html b/docs/reference/time/index.html
index ab489f9..ebd5667 100644
--- a/docs/reference/time/index.html
+++ b/docs/reference/time/index.html
@@ -1,5 +1,5 @@
time - AsCode - Terraform Alternative Syntax time
Index
Overview
time defines time primitives for starlark
Functions
def duration
duration(string) duration
+
time
Index
Overview
time defines time primitives for starlark
Functions
def duration
duration(string) duration
parse a duration
def location
location(string) location
parse a location
def now
now() time
implementations would be able to make this a constant
def time
time(string, format=..., location=...) time
diff --git a/docs/reference/types/index.html b/docs/reference/types/index.html
index ada81c0..7c01d65 100644
--- a/docs/reference/types/index.html
+++ b/docs/reference/types/index.html
@@ -1,5 +1,5 @@
built-in - AsCode - Terraform Alternative Syntax built-in
Index
Overview
builtin package represents the predefined, Terraform domain-specific,
+
built-in
Index
Overview
builtin package represents the predefined, Terraform domain-specific,
functions and types in the scope of any thread of AsCode. This means
that is not required to use the load
statement, and any of the function
can be called without any prefix.
Functions
def backend
backend(type) Backend
diff --git a/docs/reference/yaml/index.html b/docs/reference/yaml/index.html
index 42329a4..6e2f6f0 100644
--- a/docs/reference/yaml/index.html
+++ b/docs/reference/yaml/index.html
@@ -1,4 +1,4 @@
encoding/yaml - AsCode - Terraform Alternative Syntax encoding/yaml
Index
Overview
yaml provides functions for working with yaml data
Functions
def dumps
dumps(obj) string
+
encoding/yaml
Index
Overview
yaml provides functions for working with yaml data
Functions
def dumps
dumps(obj) string
serialize obj to a yaml string
Arguments
name type description obj
object
input object
def loads
loads(source) object
read a source yaml string to a starlark object
Arguments
name type description source
string
input string of yaml data
- Documentation version dev
- Template by Robert Austin
\ No newline at end of file
diff --git a/index.xml b/index.xml
index 4ad0ce0..02d990b 100644
--- a/index.xml
+++ b/index.xml
@@ -20,4 +20,4 @@ As with built-in functions, built-in methods accept only positional arguments ex
dict·clear D.clear() removes all the entries of dictionary D and returns None. It fails if the dictionary is frozen or if there are active iterators.Dialect differences https://ascode.run/docs/starlark/dialect-differences/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/starlark/dialect-differences/ The list below summarizes features of the Go implementation that are known to differ from the Java implementation of Starlark used by Bazel. Some of these features may be controlled by global options to allow applications to mimic the Bazel dialect more closely. Our goal is eventually to eliminate all such differences on a case-by-case basis. See Starlark spec issue 20.
Integers are represented with infinite precision. Integer arithmetic is exact. GitHub Action https://ascode.run/docs/github-action/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/github-action/ AsCode Github Action allows to execute AsCode run command in response to a GitHub event such as updating a pull request or pushing a new commit on a specific branch.
This used in combination with the Terraform GitHub Actions allows to execute the different terraform commands init, plan and apply inside of a GitHub Workflow.
-Parameters Parameter Mandatory/Optional Description file Mandatory Starlark file to execute. https://ascode.run/docs/_home/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/_home/ AsCode allows you to describe your infrastructure using an expressive language in Terraform without writing a single line of HCL. built-in https://ascode.run/docs/reference/types/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/types/ builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the <code>load</code> statement, and any of the functioncan be called without any prefix. encoding/base64 https://ascode.run/docs/reference/base64/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/base64/ base64 defines base64 encoding & decoding functions,often used to represent binary as text. encoding/csv https://ascode.run/docs/reference/csv/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/csv/ csv reads comma-separated values files encoding/json https://ascode.run/docs/reference/json/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/json/ json provides functions for working with json data encoding/yaml https://ascode.run/docs/reference/yaml/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/yaml/ yaml provides functions for working with yaml data http https://ascode.run/docs/reference/http/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/http/ http defines an HTTP client implementation math https://ascode.run/docs/reference/math/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/math/ math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: <a href="https://docs.python.org/3/library/math.html">https://docs.python.org/3/library/math.html</a> os https://ascode.run/docs/reference/os/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/os/ os provides a platform-independent interface to operating system functionality. path/filepath https://ascode.run/docs/reference/filepath/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/filepath/ filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path re https://ascode.run/docs/reference/re/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/re/ re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: <a href="https://docs.python.org/3/library/re.html">https://docs.python.org/3/library/re.html</a> time https://ascode.run/docs/reference/time/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/time/ time defines time primitives for starlark
\ No newline at end of file
+Parameters Parameter Mandatory/Optional Description file Mandatory Starlark file to execute. https://ascode.run/docs/_home/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/_home/ AsCode allows you to describe your infrastructure using an expressive language in Terraform without writing a single line of HCL. built-in https://ascode.run/docs/reference/types/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/types/ builtin package represents the predefined, Terraform domain-specific,functions and types in the scope of any thread of AsCode. This meansthat is not required to use the <code>load</code> statement, and any of the functioncan be called without any prefix. docker https://ascode.run/docs/reference/docker/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/docker/ The docker modules allow you to manipulate docker image names. encoding/base64 https://ascode.run/docs/reference/base64/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/base64/ base64 defines base64 encoding & decoding functions,often used to represent binary as text. encoding/csv https://ascode.run/docs/reference/csv/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/csv/ csv reads comma-separated values files encoding/json https://ascode.run/docs/reference/json/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/json/ json provides functions for working with json data encoding/yaml https://ascode.run/docs/reference/yaml/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/yaml/ yaml provides functions for working with yaml data http https://ascode.run/docs/reference/http/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/http/ http defines an HTTP client implementation math https://ascode.run/docs/reference/math/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/math/ math defines mathematical functions, it’s intended to be a drop-insubset of python’s math module for starlark: <a href="https://docs.python.org/3/library/math.html">https://docs.python.org/3/library/math.html</a> os https://ascode.run/docs/reference/os/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/os/ os provides a platform-independent interface to operating system functionality. path/filepath https://ascode.run/docs/reference/filepath/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/filepath/ filepath implements utility routines for manipulating filename paths in away compatible with the target operating system-defined file path re https://ascode.run/docs/reference/re/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/re/ re defines regular expression functions, it’s intended to be a drop-insubset of python’s re module for starlark: <a href="https://docs.python.org/3/library/re.html">https://docs.python.org/3/library/re.html</a> time https://ascode.run/docs/reference/time/Mon, 01 Jan 0001 00:00:00 +0000 https://ascode.run/docs/reference/time/ time defines time primitives for starlark
\ No newline at end of file
diff --git a/sitemap.xml b/sitemap.xml
index a0d3abb..3736a4c 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1 +1 @@
-https://ascode.run/docs/ https://ascode.run/docs/install/ https://ascode.run/docs/example/functions.star/ https://ascode.run/docs/getting-started/ https://ascode.run/docs/starlark/lexical-elements/ https://ascode.run/docs/example/runtime.star/ https://ascode.run/docs/starlark/data-types/ https://ascode.run/docs/starlark/name-binding-and-variables/ https://ascode.run/docs/starlark/value-concepts/ https://ascode.run/docs/starlark/expressions/ https://ascode.run/docs/starlark/statements/ https://ascode.run/docs/starlark/module-execution/ https://ascode.run/docs/starlark/built-in-constants-and-functions/ https://ascode.run/docs/starlark/built-in-methods/ https://ascode.run/docs/starlark/ https://ascode.run/docs/starlark/dialect-differences/ https://ascode.run/docs/reference/ https://ascode.run/docs/example/ https://ascode.run/docs/github-action/ https://ascode.run/ https://ascode.run/docs/_home/ https://ascode.run/docs/reference/types/ https://ascode.run/categories/ https://ascode.run/docs/reference/base64/ https://ascode.run/docs/reference/csv/ https://ascode.run/docs/reference/json/ https://ascode.run/docs/reference/yaml/ https://ascode.run/docs/reference/http/ https://ascode.run/docs/reference/math/ https://ascode.run/docs/reference/os/ https://ascode.run/docs/reference/filepath/ https://ascode.run/docs/reference/re/ https://ascode.run/tags/ https://ascode.run/docs/reference/time/
\ No newline at end of file
+https://ascode.run/docs/ https://ascode.run/docs/install/ https://ascode.run/docs/example/functions.star/ https://ascode.run/docs/getting-started/ https://ascode.run/docs/starlark/lexical-elements/ https://ascode.run/docs/example/runtime.star/ https://ascode.run/docs/starlark/data-types/ https://ascode.run/docs/starlark/name-binding-and-variables/ https://ascode.run/docs/starlark/value-concepts/ https://ascode.run/docs/starlark/expressions/ https://ascode.run/docs/starlark/statements/ https://ascode.run/docs/starlark/module-execution/ https://ascode.run/docs/starlark/built-in-constants-and-functions/ https://ascode.run/docs/starlark/built-in-methods/ https://ascode.run/docs/starlark/ https://ascode.run/docs/starlark/dialect-differences/ https://ascode.run/docs/reference/ https://ascode.run/docs/example/ https://ascode.run/docs/github-action/ https://ascode.run/ https://ascode.run/docs/_home/ https://ascode.run/docs/reference/types/ https://ascode.run/categories/ https://ascode.run/docs/reference/docker/ https://ascode.run/docs/reference/base64/ https://ascode.run/docs/reference/csv/ https://ascode.run/docs/reference/json/ https://ascode.run/docs/reference/yaml/ https://ascode.run/docs/reference/http/ https://ascode.run/docs/reference/math/ https://ascode.run/docs/reference/os/ https://ascode.run/docs/reference/filepath/ https://ascode.run/docs/reference/re/ https://ascode.run/tags/ https://ascode.run/docs/reference/time/
\ No newline at end of file