diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Change Log
 
+## 0.15.1
+
+* Update resource specification document to version 1.13.0
+
 ## 0.15.0
 
 * Update resource specification document to some unspecified new version.
diff --git a/library-gen/Stratosphere/ResourceProperties/CodeBuildProjectSource.hs b/library-gen/Stratosphere/ResourceProperties/CodeBuildProjectSource.hs
--- a/library-gen/Stratosphere/ResourceProperties/CodeBuildProjectSource.hs
+++ b/library-gen/Stratosphere/ResourceProperties/CodeBuildProjectSource.hs
@@ -21,6 +21,8 @@
   CodeBuildProjectSource
   { _codeBuildProjectSourceAuth :: Maybe CodeBuildProjectSourceAuth
   , _codeBuildProjectSourceBuildSpec :: Maybe (Val Text)
+  , _codeBuildProjectSourceGitCloneDepth :: Maybe (Val Integer)
+  , _codeBuildProjectSourceInsecureSsl :: Maybe (Val Bool)
   , _codeBuildProjectSourceLocation :: Maybe (Val Text)
   , _codeBuildProjectSourceType :: Val Text
   } deriving (Show, Eq)
@@ -31,6 +33,8 @@
     catMaybes
     [ fmap (("Auth",) . toJSON) _codeBuildProjectSourceAuth
     , fmap (("BuildSpec",) . toJSON) _codeBuildProjectSourceBuildSpec
+    , fmap (("GitCloneDepth",) . toJSON . fmap Integer') _codeBuildProjectSourceGitCloneDepth
+    , fmap (("InsecureSsl",) . toJSON . fmap Bool') _codeBuildProjectSourceInsecureSsl
     , fmap (("Location",) . toJSON) _codeBuildProjectSourceLocation
     , (Just . ("Type",) . toJSON) _codeBuildProjectSourceType
     ]
@@ -40,6 +44,8 @@
     CodeBuildProjectSource <$>
       (obj .:? "Auth") <*>
       (obj .:? "BuildSpec") <*>
+      fmap (fmap (fmap unInteger')) (obj .:? "GitCloneDepth") <*>
+      fmap (fmap (fmap unBool')) (obj .:? "InsecureSsl") <*>
       (obj .:? "Location") <*>
       (obj .: "Type")
   parseJSON _ = mempty
@@ -53,6 +59,8 @@
   CodeBuildProjectSource
   { _codeBuildProjectSourceAuth = Nothing
   , _codeBuildProjectSourceBuildSpec = Nothing
+  , _codeBuildProjectSourceGitCloneDepth = Nothing
+  , _codeBuildProjectSourceInsecureSsl = Nothing
   , _codeBuildProjectSourceLocation = Nothing
   , _codeBuildProjectSourceType = typearg
   }
@@ -64,6 +72,14 @@
 -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec
 cbpsBuildSpec :: Lens' CodeBuildProjectSource (Maybe (Val Text))
 cbpsBuildSpec = lens _codeBuildProjectSourceBuildSpec (\s a -> s { _codeBuildProjectSourceBuildSpec = a })
+
+-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-gitclonedepth
+cbpsGitCloneDepth :: Lens' CodeBuildProjectSource (Maybe (Val Integer))
+cbpsGitCloneDepth = lens _codeBuildProjectSourceGitCloneDepth (\s a -> s { _codeBuildProjectSourceGitCloneDepth = a })
+
+-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-insecuressl
+cbpsInsecureSsl :: Lens' CodeBuildProjectSource (Maybe (Val Bool))
+cbpsInsecureSsl = lens _codeBuildProjectSourceInsecureSsl (\s a -> s { _codeBuildProjectSourceInsecureSsl = a })
 
 -- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location
 cbpsLocation :: Lens' CodeBuildProjectSource (Maybe (Val Text))
diff --git a/stratosphere.cabal b/stratosphere.cabal
--- a/stratosphere.cabal
+++ b/stratosphere.cabal
@@ -2,10 +2,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 7ca33530070b6438be0083745dbfe4ce0ca321b2bf51959888d45ec2bfd671cb
+-- hash: 1f42b0065b4b408df862d327f99c3da85d491261be4e529f60e1b2f27e6d10ab
 
 name:           stratosphere
-version:        0.15.0
+version:        0.15.1
 synopsis:       EDSL for AWS CloudFormation
 description:    EDSL for AWS CloudFormation
 category:       AWS, Cloud
