Skip to content

Commit 574a692

Browse files
Garison DraperGarison Draper
Garison Draper
authored and
Garison Draper
committed
removed last issue 496 items - PR is only for issue 495 now
1 parent 1660c94 commit 574a692

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Diff for: docs/config.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,8 @@ that stacker applies), specify an empty map for the top-level keyword::
113113

114114
bucket_tags: {}
115115

116-
Tags updates get applied on every stacker run
116+
S3 Bucket Tags updates get applied on every stacker run
117117

118-
.. _`AWS CloudFormation Resource Tags Type`: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
119118

120119
Module Paths
121120
------------
@@ -257,8 +256,7 @@ If no tags are specified, the `stacker_namespace` tag is applied to your stack
257256
with the value of `namespace` as the tag value.
258257

259258
If you prefer to apply a custom set of tags, specify the top-level keyword
260-
`tags` as a map. The `stacker_namespace` tag will be automaticly added as well
261-
to help identify resources created by Stacker. Example::
259+
`tags` as a map. Example::
262260

263261
tags:
264262
"hello": world

Diff for: stacker/context.py

-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,6 @@ def upload_templates_to_s3(self):
9797
def tags(self):
9898
tags = self.config.tags
9999
if tags is not None:
100-
if "stacker_namespace" in tags:
101-
return tags
102-
tags["stacker_namespace"] = self.namespace
103100
return tags
104101
if self.namespace:
105102
return {"stacker_namespace": self.namespace}

0 commit comments

Comments
 (0)