<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to store your Terraform State file in Azure Storage.	</title>
	<atom:link href="https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/feed/" rel="self" type="application/rss+xml" />
	<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-store-your-terraform-state-file-in-azure-storage</link>
	<description>A blog about Azure Kubernetes Service (AKS) and more...</description>
	<lastBuildDate>Tue, 28 May 2019 18:20:50 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: Pixel Robots.		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-365</link>

		<dc:creator><![CDATA[Pixel Robots.]]></dc:creator>
		<pubDate>Tue, 28 May 2019 18:20:50 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-365</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-364&quot;&gt;Jonathan Reynes&lt;/a&gt;.

Glad you got it sorted.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-364">Jonathan Reynes</a>.</p>
<p>Glad you got it sorted.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Reynes		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-364</link>

		<dc:creator><![CDATA[Jonathan Reynes]]></dc:creator>
		<pubDate>Tue, 28 May 2019 18:11:32 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-364</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-361&quot;&gt;Jonathan Reynes&lt;/a&gt;.

Please ignore ^ 
The error occurred because I was assigning one of the backend.tfvars variables incorrectly with &quot;:&quot; instead of &quot;=&quot;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-361">Jonathan Reynes</a>.</p>
<p>Please ignore ^<br />
The error occurred because I was assigning one of the backend.tfvars variables incorrectly with &#8220;:&#8221; instead of &#8220;=&#8221;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Pixel Robots.		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-363</link>

		<dc:creator><![CDATA[Pixel Robots.]]></dc:creator>
		<pubDate>Mon, 27 May 2019 15:06:05 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-363</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-361&quot;&gt;Jonathan Reynes&lt;/a&gt;.

Sorry for the delay in getting back to you. Are you able to show your backend.tfvars file also?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-361">Jonathan Reynes</a>.</p>
<p>Sorry for the delay in getting back to you. Are you able to show your backend.tfvars file also?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Reynes		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-361</link>

		<dc:creator><![CDATA[Jonathan Reynes]]></dc:creator>
		<pubDate>Sat, 25 May 2019 04:03:55 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-361</guid>

					<description><![CDATA[I get this when following your steps and I am on version 0.12.0
Am I doing something wrong?
___________________________
terraform init -backend-config=&quot;path=/backend.tfvars&quot;

Error loading backend config: 1 error(s) occurred:
Initializing the backend...

* terraform.backend: configuration cannot contain interpolations

The backend configuration is loaded by Terraform extremely early, before
the core of Terraform can be initialized. This is necessary because the backend
dictates the behavior of that core. The core is what handles interpolation
processing. Because of this, interpolations cannot be used in backend
configuration.

If you&#039;d like to parameterize backend configuration, we recommend using
partial configuration with the &quot;-backend-config&quot; flag to &quot;terraform init&quot;.

_________________________
I know currently interpolation for terraform {backend &quot;azurerm&quot; {}} resources are not supported. Meaning, you simply cannot place a var.whatever variable inside backend. I am not doing this, but am doing exactly as the tutorial shows. Am I missing something? I have

main.tf
resource &quot;azurerm_resource_group&quot; &quot;state-demo-secure&quot; {
  name     = &quot;state-demo&quot;
  location = &quot;eastus&quot;
}

and 

provider &quot;azurerm&quot; {
    version = &quot;1.29.0&quot;
    subscription_id = &quot;${var.azurerm_provider[&quot;subscription_id&quot;]}&quot;
    client_id = &quot;${var.azurerm_provider[&quot;client_id&quot;]}&quot;
    client_secret = &quot;${var.azurerm_provider[&quot;client_secret&quot;]}&quot;
    tenant_id = &quot;${var.azurerm_provider[&quot;tenant_id&quot;]}&quot;
}

with an associated providers.tfvars]]></description>
			<content:encoded><![CDATA[<p>I get this when following your steps and I am on version 0.12.0<br />
Am I doing something wrong?<br />
___________________________<br />
terraform init -backend-config=&#8221;path=/backend.tfvars&#8221;</p>
<p>Error loading backend config: 1 error(s) occurred:<br />
Initializing the backend&#8230;</p>
<p>* terraform.backend: configuration cannot contain interpolations</p>
<p>The backend configuration is loaded by Terraform extremely early, before<br />
the core of Terraform can be initialized. This is necessary because the backend<br />
dictates the behavior of that core. The core is what handles interpolation<br />
processing. Because of this, interpolations cannot be used in backend<br />
configuration.</p>
<p>If you&#8217;d like to parameterize backend configuration, we recommend using<br />
partial configuration with the &#8220;-backend-config&#8221; flag to &#8220;terraform init&#8221;.</p>
<p>_________________________<br />
I know currently interpolation for terraform {backend &#8220;azurerm&#8221; {}} resources are not supported. Meaning, you simply cannot place a var.whatever variable inside backend. I am not doing this, but am doing exactly as the tutorial shows. Am I missing something? I have</p>
<p>main.tf<br />
resource &#8220;azurerm_resource_group&#8221; &#8220;state-demo-secure&#8221; {<br />
  name     = &#8220;state-demo&#8221;<br />
  location = &#8220;eastus&#8221;<br />
}</p>
<p>and </p>
<p>provider &#8220;azurerm&#8221; {<br />
    version = &#8220;1.29.0&#8221;<br />
    subscription_id = &#8220;${var.azurerm_provider[&#8220;subscription_id&#8221;]}&#8221;<br />
    client_id = &#8220;${var.azurerm_provider[&#8220;client_id&#8221;]}&#8221;<br />
    client_secret = &#8220;${var.azurerm_provider[&#8220;client_secret&#8221;]}&#8221;<br />
    tenant_id = &#8220;${var.azurerm_provider[&#8220;tenant_id&#8221;]}&#8221;<br />
}</p>
<p>with an associated providers.tfvars</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Pixel Robots.		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-302</link>

		<dc:creator><![CDATA[Pixel Robots.]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 09:55:39 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-302</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-301&quot;&gt;reddy&lt;/a&gt;.

If they use the backend.tfvars file they will be able to access the file too.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-301">reddy</a>.</p>
<p>If they use the backend.tfvars file they will be able to access the file too.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: reddy		</title>
		<link>https://pixelrobots.co.uk/2019/01/how-to-store-your-terraform-state-file-in-azure-storage/#comment-301</link>

		<dc:creator><![CDATA[reddy]]></dc:creator>
		<pubDate>Tue, 26 Feb 2019 09:28:31 +0000</pubDate>
		<guid isPermaLink="false">https://pixelrobots.co.uk/?p=32527#comment-301</guid>

					<description><![CDATA[Hi, the article is nice, I am having a question, I have stored my state file in the container. How can I share my state file to the other people on the team?]]></description>
			<content:encoded><![CDATA[<p>Hi, the article is nice, I am having a question, I have stored my state file in the container. How can I share my state file to the other people on the team?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
