Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Block Runtime property references for resource and module names #928

Merged
merged 36 commits into from
Jan 5, 2021

Conversation

TSunny007
Copy link
Contributor

@TSunny007 TSunny007 commented Nov 17, 2020

Addresses #360

In addition, this blocks variables and multi-hop variable runtime references as well

resource myRes 'My.Rp/type@2020-01-01' = {
  name: 'name1'
  properties: {
    anyProperty: anyString
  }
}

var foo = myRes.location
var valid = myRes.name
var bar = {
  a: foo
  b: myRes.location
  c: valid
}

// all of should now be blocked
resource myRes2 'My.Rp/type@2020-01-01' = {
  name: myRes.location | foo | bar.a | bar.b | bar.c | myRes['properties'].anyProperty | '${myRes.location}'
}

// This should be allowed
resource myRes2 'My.Rp/type@2020-01-01' = {
  name: valid
}

@codecov-io
Copy link

codecov-io commented Nov 25, 2020

Codecov Report

Merging #928 (114885e) into main (8c810ea) will decrease coverage by 0.00%.
The diff coverage is 92.54%.

Impacted file tree graph

@@            Coverage Diff             @@
##             main     #928      +/-   ##
==========================================
- Coverage   94.49%   94.48%   -0.01%     
==========================================
  Files         336      338       +2     
  Lines       16835    16987     +152     
  Branches       14       14              
==========================================
+ Hits        15908    16050     +142     
- Misses        927      937      +10     
Flag Coverage Δ
dotnet 95.02% <92.54%> (-0.02%) ⬇️
typescript 27.20% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/Bicep.Core/Emit/ExpressionConverter.cs 97.10% <ø> (ø)
src/Bicep.Core/Emit/ResourceDependencyVisitor.cs 94.44% <ø> (ø)
src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs 96.78% <ø> (ø)
...re/TypeSystem/DeployTimeConstantVariableVisitor.cs 83.33% <83.33%> (ø)
...Bicep.Core/TypeSystem/DeployTimeConstantVisitor.cs 95.09% <95.09%> (ø)
src/Bicep.Core/Diagnostics/DiagnosticBuilder.cs 100.00% <100.00%> (ø)
src/Bicep.Core/Emit/EmitLimitationCalculator.cs 82.50% <100.00%> (+0.44%) ⬆️
src/Bicep.Core/Emit/InlineDependencyVisitor.cs 93.93% <100.00%> (ø)
src/Bicep.Core/LanguageConstants.cs 98.91% <100.00%> (ø)
.../Bicep.Core/TypeSystem/Az/AzResourceTypeFactory.cs 92.00% <100.00%> (ø)
... and 4 more

@TSunny007 TSunny007 marked this pull request as ready for review November 25, 2020 22:00
@TSunny007 TSunny007 linked an issue Dec 3, 2020 that may be closed by this pull request
@TSunny007 TSunny007 changed the title Tsunkaraneni/deploy time depedency visitor Block Runtime property references for resource and module names Dec 22, 2020
@TSunny007 TSunny007 enabled auto-merge (squash) December 24, 2020 19:42
Copy link
Member

@anthony-c-martin anthony-c-martin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@TSunny007 TSunny007 merged commit 7b1da15 into main Jan 5, 2021
@TSunny007 TSunny007 deleted the tsunkaraneni/DeployTimeDepedencyVisitor branch January 5, 2021 17:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Resource name should not be allowed with a 'runtime' property
6 participants