24 lines
998 B
YAML
24 lines
998 B
YAML
![]() |
---
|
||
|
# Copyright 2018, Logan Vig <logan2211@gmail.com>
|
||
|
#
|
||
|
# 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.
|
||
|
|
||
|
# Versions and SHAs published at https://golang.org/dl/
|
||
|
go_download_version: 1.10.1
|
||
|
go_download_url: "https://dl.google.com/go/{{ go_download_filename }}"
|
||
|
go_download_arch: "{{ go_arch_translation[ansible_architecture] | default(ansible_architecture) }}"
|
||
|
go_download_filename: "go{{ go_download_version }}.linux-{{ go_download_arch }}.tar.gz"
|
||
|
go_arch_translation:
|
||
|
x86_64: amd64
|
||
|
aarch64: arm64
|