You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/05/07 07:26:55 UTC

[airflow] branch master updated: Fixes syntax of terraform script. (#15710)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new b9f6e9c  Fixes syntax of terraform script. (#15710)
b9f6e9c is described below

commit b9f6e9c28c5297c60d48f75335e2861cc7d1172e
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Fri May 7 09:26:33 2021 +0200

    Fixes syntax of terraform script. (#15710)
    
    Latest pygments version does not render properly the
    syntax where `{}` is used (terraform expects this to be
    separated by EOL.
---
 docs/apache-airflow-providers-google/connections/gcp.rst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/docs/apache-airflow-providers-google/connections/gcp.rst b/docs/apache-airflow-providers-google/connections/gcp.rst
index b37e251..7cdc8d1 100644
--- a/docs/apache-airflow-providers-google/connections/gcp.rst
+++ b/docs/apache-airflow-providers-google/connections/gcp.rst
@@ -180,7 +180,8 @@ For example, with the following ``terraform`` setup...
         terraform {
           required_version = "> 0.11.14"
         }
-        provider "google" {}
+        provider "google" {
+        }
         variable "project_id" {
           type = "string"
         }